]> git.donarmstrong.com Git - lilypond.git/blob - input/template/melody-lyrics.ly
* lily/new-lyric-combine-music-iterator.cc (find_voice): make sure
[lilypond.git] / input / template / melody-lyrics.ly
1 \version "2.1.19"
2
3 \header {
4   texidoc = "Melody and lyrics."
5 }
6
7 melody = \notes \relative c'' {
8   a b c d
9 }
10
11 text = \lyrics {
12   Aaa Bee Cee Dee
13 }
14
15 \score {
16   <<
17       \context Voice = one {
18           \property Staff.autoBeaming = ##f
19           \melody
20       }
21       \lyricsto "one" \new LyricsVoice \text
22   >>
23   \paper { }
24   \midi  { }
25 }