]> git.donarmstrong.com Git - lilypond.git/blob - input/template/melody-lyrics-chords.ly
update syntax in .ly files.
[lilypond.git] / input / template / melody-lyrics-chords.ly
1 \version "1.7.6"
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         \property Staff.autoBeaming = ##f
25         \property Staff.automaticMelismata = ##t
26         \melody
27       }
28       \context Lyrics \text
29   >
30   \paper { }
31   \midi  { }
32 }