]> git.donarmstrong.com Git - lilypond.git/blob - input/template/melody-lyrics-chords.ly
covnert-ly
[lilypond.git] / input / template / melody-lyrics-chords.ly
1 \version "1.5.68"
2
3 \header {
4   dedication = "dedication"
5   title = "Title"
6   subtitle = "Subtitle"
7   subsubtitle = "Subsubtitle"
8   composer = "Composer (xxxx-yyyy)"
9   opus = "Opus 0"
10   piece = "Piece I"
11   instrument = "Instrument"
12   arranger = "Arranger"
13   poet = "Poet"
14   texttranslator = "Translator"
15   copyright = "public domain"
16   enteredby = "jcn"
17   source =  "urtext"
18 }
19
20 melody = \notes \relative c' {
21   a b c d
22 }
23
24 text = \lyrics {
25   Aaa Bee Cee Dee
26 }
27
28 accompaniment = \chords {
29   a2: c2
30 }
31
32 \score {
33   <
34     \context ChordNames \accompaniment
35     \addlyrics
36       \context Staff = one {
37         \property Staff.autoBeaming = ##f
38         \property Staff.automaticMelismata = ##t
39         \melody
40       }
41       \context Lyrics \text
42   >
43   \paper { }
44   \midi  { }
45 }