]> git.donarmstrong.com Git - lilypond.git/blob - input/template/melody-lyrics-chords.ly
* scripts/convert-ly.py (FatalConversionError.figures_replace):
[lilypond.git] / input / template / melody-lyrics-chords.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.4"
3
4 \header {
5   texidoc = "Popsong format: chords, melody and lyrics."
6 }
7
8 melody = \notes \relative c' {
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     \addlyrics
24       \context Staff = one {
25         \property Staff.autoBeaming = ##f
26         \property Staff.automaticMelismata = ##t
27         \melody
28       }
29       \context Lyrics \text
30   >>
31   \paper { }
32   \midi  { }
33 }