lilypond-user
[Top][All Lists]
Advanced

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

Re: multiple strophes centered


From: Klaus Blum
Subject: Re: multiple strophes centered
Date: Thu, 28 Jan 2016 08:53:19 -0700 (MST)

Hi Bernhard, 

you could start by defining the second verse, followed by the first (aligned
ABOVE the second) and finally the third (aligned below the second):

% ---------------------------------------------
\score {
  <<
    \new Staff {
      \new Voice = "melody" {
        \relative c'' {
          a4 a a a
          \repeat volta 3 { b4 b b b }
          c4 c c c
        }
      }
    }
    \new Lyrics = "secondVerse" \lyricsto "melody" {
      Not re -- peat -- ed.
      <<
        { Sec -- ond time words. }
        \new Lyrics = "firstVerse"
        \with { alignAboveContext = #"secondVerse" } {
          \set associatedVoice = "melody"
          The first time words.
        }
        \new Lyrics = "thirdVerse"
        \with { alignBelowContext = #"secondVerse" } {
          \set associatedVoice = "melody"
          The third time words.
        }
      >>
      The end sec -- tion.
    }
    \new Voice = "harmony" {
      \relative c' {
        f4 f f f \repeat volta 2 { g8 g g4 g2 } a4 a8. a16 a2
      }
    }
  >>
} 
% ---------------------------------------------

Cheers, 
Klaus



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/multiple-strophes-centered-tp186583p186591.html
Sent from the User mailing list archive at Nabble.com.



reply via email to

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