bug-lilypond
[Top][All Lists]
Advanced

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

Re: Issue 1560 in lilypond: Lyrics can not be aligned below ossia staff


From: lilypond
Subject: Re: Issue 1560 in lilypond: Lyrics can not be aligned below ossia staff
Date: Mon, 09 May 2011 15:44:06 +0000

Updates:
        Status: Invalid

Comment #2 on issue 1560 by address@hidden: 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.




reply via email to

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