lilypond-user
[Top][All Lists]
Advanced

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

Re: beginner stanza help


From: Simon Albrecht
Subject: Re: beginner stanza help
Date: Wed, 10 Sep 2014 09:57:19 +0200
User-agent: Mozilla/5.0 (Windows NT 6.1; rv:31.0) Gecko/20100101 Thunderbird/31.1.0

Am 10.09.2014 um 02:35 schrieb Steven Arntson:
I'm trying to get stanzas to work for a song that has two verses. What
am I doing wrong?

text = \lyricmode {
   \set stanza = #"1. "
      here are               | %m1
      the words              | %m2
   }
   \lyricmode {
   \set stanza = #"2. "
      here are               | %m1
      more words             | %m2
   }
If you want to assign both stanzas to one variable, then it is necessary to wrap them. As they are occuring simultaneously, this is done with << >>:

text = <<
  \lyricmode {
    \set stanza = #"1. "
    here are               | %m1
    the words              | %m2
  }
  \lyricmode {
    \set stanza = #"2. "
    here are               | %m1
    more words             | %m2
  }


Yours, Simon





reply via email to

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