% ChoirStaff mungs lyrics when the syllables have durations.

> I'm not top posting.

% ChoirStaff mungs lyrics when the syllables have durations.

% You can get around this problem with \set associated voice.

\version "2.10.33"
\layout { ragged-right = ##t }

sopranonotes = \relative c' { e2  e4  }
sopranowords = \lyricmode   { do2 re4 }

altonotes    = \relative c' { e4  e4  e4  }

\score
{
  \context ChoirStaff
  <<
    \context Staff = soprano
    <<
      \context Voice = sop { \sopranonotes }
      \new Lyrics \sopranowords
    >>
    \context Staff = alto
    <<
      \context Voice = alt { \altonotes }
      \new Lyrics \lyricmode 
      { 
        \set associatedVoice = #"alt"
        do4 re4 me4 
      }
    >>
  >>
}




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

Reply via email to