lilypond-user
[Top][All Lists]
Advanced

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

RE: Two column verses below music?


From: bombcar
Subject: RE: Two column verses below music?
Date: Wed, 18 Dec 2013 07:51:04 -0800 (PST)

Aha! That was part of the problem, but the other thing is to put the column
inside the original markup:

melody = \relative c' {
  c4 c c c | d d d d
}

text = \lyricmode {
  \set stanza = #"1." This is verse one.
  It has two lines.
}

\score {
  <<
    \new Voice = "one" { \melody }
    \new Lyrics \lyricsto "one" \text
  >>
  \layout { }
}

stanzaII = \markup { \column {
  "This is verse two."
  "It has two lines."
}}
\markup {
  \fill-line {
    \hspace #0.1 % moves the column off the left margin;
     % can be removed if space on the page is tight
     \column {
      \line { \bold "2."
        \stanzaII
      }
     }
     \vspace #0.1 % adds vertical spacing between verses
      \line { \bold "3."
        \column {
          "This is verse three."
          "It has two lines."
        }
      }
  }
}

works the way I'd expect it to.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Two-column-verses-below-music-tp156074p156101.html
Sent from the User mailing list archive at Nabble.com.



reply via email to

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