Earnest Richards <egrichards <at> earthlink.net> writes:

[...]
> I would like to be able to arrange a single file that has, for example in a
> four stanza hymn, the first and second stanzas set RH:soprano and alto,
> LH:tenor, PED:bass; the third stanza set like RH:soprano, LH:alto and tenor,
> PED bass; then the final stanza set like stanzas one and two but transposed
> up a half-step or a whole step.
[...]

Just put multiple \score{} expressions into the same ly-file. The following
works, but needs cleaning-up a little with StaffGroup etc.

The relevant part of the manual is 10.1.2 Multiple scores in a book.

\score {
  <<
    \new Staff = upper <<
      \sopranoNotes
    >>
    \new Staff = middle <<
      %\clef "G_8"
      \clef alto
      \partcombine
      \altoNotes
      \tenorNotes
    >>
    \new Staff = lower <<
      \clef bass
      \bassNotes
    >>
  >>
}

\score {
  <<
    \new Staff = upper <<
      \partcombine
      \transpose c d { \sopranoNotes }
      \transpose c d { \altoNotes }
    >>
    \new Staff = middle <<
      %\clef "G_8"
      \clef bass
      \transpose c d { \tenorNotes }
    >>
    \new Staff = lower <<
      \clef bass
      \transpose c d { \bassNotes }
    >>
  >>
}




_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to