Updates:
        Status: Invalid

Comment #2 on issue 1560 by [email protected]: Lyrics can not be aligned below ossia staff
http://code.google.com/p/lilypond/issues/detail?id=1560

It's actually invalid because the lyricsto splitpart is outside the << >> in which splitpart is created - I assume that this voice context no longer exists at this point. Fixed by putting the lyricsto in the right place:

\score { <<
  \new Voice = melody {
    \relative c' {
      c4
      <<
        { c8 e }
        \new Staff = ossiaStaff {
          \new Voice = splitpart { c4 }
        }
\new Lyrics \with { alignBelowContext = #"ossiaStaff" } \lyricsto splitpart { will }
      >>
      c4 c | c
    }
  }
  \new Lyrics \lyricsto melody { we shall not o- ver- come }
}

Doing this causes an Issue 1551 problem again, but correctly aligns the lyrics.


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

Reply via email to