[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Ossia staff verse order
From: |
Trevor Daniels |
Subject: |
Re: Ossia staff verse order |
Date: |
Mon, 9 May 2011 17:19:40 +0100 |
Phil, you wrote Monday, May 09, 2011 4:49 PM
With the following code:
[snip]
The lyrics come out in a vertical order with the second verse
higher (closer to the stave) than the first. Strikes me as wrong.
Should I raise a bug for this, or am I doing something stupid?
Maybe the latter :) What it does seems fairly logical
to me. You ask for the second verse to be placed after
the OssiaVoice, not after the first lyrics. Remember
the Lyrics are contexts too.
Try:
\new Lyrics = "FirstLyrics" \with { alignBelowContext =
"OssiaStaff" } \lyricsto "OssiaVoice" { \teeny First verse la la }
\new Lyrics \with { alignBelowContext = "FirstLyrics" }
\lyricsto "OssiaVoice" { \teeny Second verse la la }
Trevor