|
| From: | Kieren MacMillan |
| Subject: | Re: verses and chorus |
| Date: | Thu, 24 Dec 2009 11:52:52 -0500 |
Hi Athanasius:
I want music notation there too, not just words.What I want is the two verses with music and then below the music for the chorus and the lyrics for the chorus.
One easy way is with variables:
verseNotes = \relative { ... }
chorusNotes = \relative { ... }
verseOneLyrics = \lyricmode { ... }
verseTwoLyrics = \lyricmode { ... }
chorusLyrics = \lyricmode { ... }
Then combine them in the score, e.g.
<<
\new Voice = "melody" { \verseNotes \chorusNotes }
\new Lyrics \lyricsto "melody" { \verseOneLyrics \chorusLyrics }
\new Lyrics \lyricsto "melody" { \verseTwoLyrics }
>>
Hope this helps!
Kieren.
| [Prev in Thread] | Current Thread | [Next in Thread] |