Mats Bengtsson writes:
 > Kilian A. Foth wrote:
 > > 
 > > Hello list,
 > > 
 > > I am having trouble setting lyrics to a choral part that divides
 > > itself for a few bars only. 
 >
 > Hopefully, 
 > http://lists.gnu.org/archive/html/lilypond-user/2004-12/msg00109.html
 > will answer this question.
 > 

Hmmm, interesting. I find that referring to "1" and "2" *almost* does
what is needed:

\score {
  <<  \context Voice = "melody" { \relative c' { c c c c | c } }
      \new Lyrics \lyricsto "melody" { we shall o- ver- come } >> }
    
\score {
  <<  \context Voice = "melody" { \relative c' { c c8 e c4 c | c } }
      \new Lyrics \lyricsto "melody" { we shall not o- ver- come } >> }

\score {
  <<  \context Voice = "melody" { 
    \relative c' { c 
      << {\voiceOne c8 e} \\ {\voiceTwo c4} >> 
     \oneVoice c4 c | c 
     } 
  }
      \new Lyrics \lyricsto "melody" { we o- ver- come } 
      \new Lyrics \lyricsto "1" { shall not } 
      \new Lyrics \lyricsto "2" { shall } 
    >>
}


The third score correctly combines the first two (although the split
lyrics are typeset one line too low). But that trick only works once
for a part -- the next assignment to "1" would put yet another line of
lyrics under the same split note, rather than the next one. Can notes
and text be associated closer somehow to avoid this?

-- 
Kilian Foth                                    Phone +49 40 42883-2518
AB NATS, FB Informatik                         Fax   +49 40 42883-2515
Universität Hamburg
Vogt-Kölln-Str. 30
22527 Hamburg


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

Reply via email to