]> git.donarmstrong.com Git - lilypond.git/blob - input/template/melody-lyrics-chords.ly
2874b5360842bd36900c4eab5a9e7ef6b79b915c
[lilypond.git] / input / template / melody-lyrics-chords.ly
1 \version "2.2.0"
2 \header
3 {
4     texidoc = "Popsong format: chords, melody and lyrics."
5 }
6
7 melody = \notes \relative c'
8 {
9     a b c d
10 }
11
12 text = \lyrics {
13     Aaa Bee Cee Dee
14 }
15
16 accompaniment = \chords {
17     a2 c2
18 }
19
20 \score {
21   <<
22     \context ChordNames \accompaniment
23     \context Voice = one {
24         \autoBeamOff
25         \melody
26     }
27     \lyricsto "one" \new Lyrics \text
28   >>
29   \paper { }
30   \midi  { }
31 }