]> git.donarmstrong.com Git - lilypond.git/blob - input/template/melody-lyrics.ly
Massive changes - see ChangeLog.
[lilypond.git] / input / template / melody-lyrics.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.0"
3
4 \header {
5   texidoc = "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 \score {
17   <
18     \addlyrics
19       \context Staff = one {
20         \property Staff.autoBeaming = ##f
21         \melody
22       }
23       \context Lyrics \text
24   >
25   \paper { }
26   \midi  { }
27 }