I've done a number of scores where I'm having extra stanzas of lyrics added either directly after the last staff of music, or, more frequently, on a separate page. Either way, I use the \string-lines command. It has the advantage of accepting an entire paragraph, and going along with the existing line breaks. Makes things easy when doing a copy and paste. The full description from the official docs:
\string-lines
strg (string)Takes the string strg and splits it at the character provided by the property split-char
, defaulting to #\newline
. Surrounding whitespace is removed from every resulting string. The returned list of markups is ready to be formatted by other markup or markup list commands like \column
, \line
, etc.
\markup {
\column
\string-lines
"foo, foo,
bar, bar,
buzz, buzz!"
}
![[image of music]]()
Used properties:
One caveat about the \string-lines command I discovered by trying to get it to do something - if you want blank lines between sections of text, just entering extra new lines in the text won't work. Which I would have realized if I'd read the description a bit more carefully. Instead, you'll need something like:
\column { \small
\string-lines
"1. I wonder as I wander out under the sky how Jesus my saviour did come for to die; for
poor orn'ry people like you and like I, I wonder as I wander ... out under the sky." }
\vspace #1
\column { \small
\string-lines
"2. When Mary birthed Jesus, 'twas is a cow's stall, with wisemen and farmers and shepherds and all
But high from God's heaven a star's light did fall, and the promise of ages ... it then did recall." }
The \vspace gives the vertical space between stanzas.
Well, hopefully this might help. Or at least give you some ideas that might get you where you want to be.
Michael