]> git.donarmstrong.com Git - lilypond.git/blob - input/template/melody-lyrics.ly
4691f1d1af78cd5038478d36158b32692effcab5
[lilypond.git] / input / template / melody-lyrics.ly
1 \version "2.3.4"
2
3 \header {
4   texidoc = "Melody and lyrics."
5 }
6
7 melody =  \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           \set Staff.autoBeaming = ##f
19           \melody
20       }
21       \lyricsto "one" \new Lyrics \text
22   >>
23   \paper { }
24   \midi  { }
25 }