]> git.donarmstrong.com Git - lilypond.git/blob - input/template/melody-lyrics-chords.ly
* lily/lyric-phrasing-engraver.cc: move from
[lilypond.git] / input / template / melody-lyrics-chords.ly
1 \version "1.9.8"
2
3 \header {
4   texidoc = "Popsong format: chords, 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 accompaniment = \chords {
16   a2 c2
17 }
18
19 \score {
20   <<
21     \context ChordNames \accompaniment
22     \addlyrics
23       \context Staff = one {
24         \autoBeamOff
25         \melody
26       }
27       \context Lyrics \text
28   >>
29   \paper { }
30   \midi  { }
31 }