see http://old.nabble.com/wrong-alignment-when-repeating-music-with-different-text-on-one-line-ts32622828.html#a32622828 for a related problem. this has not been treated as a bug report.

at least there seems to be a solution to this: use explicitly named contexts before actually filling voices and lyrics:

\score {
  \new Staff = "A"
  \new Lyrics = "A"
  \context Staff <<
    {
      \new Voice = "unsung" { \unsungmelodyA }
      \new Voice = "sungA" { \sungmelodyOne }
      \new Voice = "unsung" { \unsungmelodyB }
      \new Voice = "sungB" { \sungmelodyTwo }
      \new Voice = "unsung" { \unsungmelodyC }
      \new Voice = "sungC" { \sungmelodyThree }
    }
    \context Lyrics = "A" \lyricsto "sungA" \wordsA
    \context Lyrics = "A" \lyricsto "sungB" \wordsB
    \context Lyrics = "A" \lyricsto "sungC" \wordsC
  >>
}

does this do what you expect!?
Eluze

_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to