Hi Rohan,

>     Spoken chorus uses (connected) one-line staves.  How would I engrave this 
> for, say, an S-A-T-B choir?
> 

I'm not sure I understand what you are looking for. Something like the attached 
sample?

It has been created by using the Frescobaldi SATB choir template and replacing 
all Staff by RhythmicStaff. One could also use DrumStaff \with { drumStyleTable 
= #percussion-style \override StaffSymbol #'line-count = #1 }

If you look for something different then maybe a drawn picture would help.

Kind regards,
Michael
\version "2.19.65"

\header {
  title = "sample SATB voice choir"
}

global = {
  \key c \major
  \time 4/4
}

soprano = \relative c'' {
  \global
  c4 c8 c c4 c c
}

alto = \relative c' {
  \global
  c4 c c c c
}

tenor = \relative c' {
  \global
  c4 c c c c
}

bass = \relative c {
  \global
  c2 c4 c c
}

sopranoVerse = \lyricmode {
  So -- pra -- no text comes here
}

altoVerse = \lyricmode {
  Al -- to text comes here
}

tenorVerse = \lyricmode {
  Te -- nor text comes here
}

bassVerse = \lyricmode {
  Bass text comes here
}

choirPart = \new ChoirStaff <<
  \new RhythmicStaff \with {
    midiInstrument = "acoustic grand"
    instrumentName = "Sopran"
    shortInstrumentName = "S"
  } { \soprano }
  \addlyrics { \sopranoVerse }
  \new RhythmicStaff \with {
    midiInstrument = "acoustic grand"
    instrumentName = "Alt"
    shortInstrumentName = "A"
  } { \alto }
  \addlyrics { \altoVerse }
  \new RhythmicStaff \with {
    midiInstrument = "acoustic grand"
    instrumentName = "Tenor"
    shortInstrumentName = "T"
  } { \clef "treble_8" \tenor }
  \addlyrics { \tenorVerse }
  \new RhythmicStaff \with {
    midiInstrument = "acoustic grand"
    instrumentName = "Bass"
    shortInstrumentName = "B"
  } { \clef bass \bass }
  \addlyrics { \bassVerse }
>>

\score {
  <<
    \choirPart
  >>
  \layout { }
  \midi {
    \tempo 4=100
  }
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to