lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Difference Between \lyricsto and associatedVoice With Melody Rhythm


From: eluze
Subject: Re: Difference Between \lyricsto and associatedVoice With Melody Rhythm
Date: Sun, 06 Nov 2011 22:32:16 +0100
User-agent: Opera Mail/11.52 (Win32)

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]