lilypond-user
[Top][All Lists]
Advanced

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

Re: 2nd Verse lyrics drop below all staves, alignBelowContext not workin


From: Keizen Li Qian
Subject: Re: 2nd Verse lyrics drop below all staves, alignBelowContext not working
Date: Sat, 7 Sep 2019 12:44:44 -0700

Tyler, thank you so much, it worked! I found my error: I had a redundant \new Lyrics context in my choralpart.ly file. And thank you so much for the reminders about ly file etiquette, my apologies. 

Keizen
they/them


On Sat, Sep 7, 2019 at 12:32 PM Tyler Mitchell <address@hidden> wrote:
[With apologies for repeatedly mailing the list...]

Perhaps a better way, if you want to use alignBelowContext instead,
is to assign a name to the Lyrics context itself, like:

\version "2.18.2"

\score {
  <<
    \new Staff <<
      \new Voice = "soprano" \relative c' {
        e4 d c d e e e r
      }
      \new Lyrics = "soprano-lyrics" \lyricsto "soprano" {
        Ma -- ry had a
        <<
          { lit -- tle lamb, }
          \new Lyrics \with {
            alignBelowContext = #"soprano-lyrics"
          } {
            \set associatedVoice = #"soprano"
            laz -- er bat,
          }
        >>
      }
    >>
    \new Staff = "bass-staff" <<
      \new Voice = "bass" \relative c {
        \clef bass
        c4 c g' g a a g r
      }
    >>
  >>
}

And that produces the "better" spacing that I like in the "\skip"
version, too. (Sometimes it's fun to rethink a problem you think
you've already solved...)

Best,
Tyler

reply via email to

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