]> git.donarmstrong.com Git - lilypond.git/blob - input/template/melody-lyrics.ly
*** empty log message ***
[lilypond.git] / input / template / melody-lyrics.ly
1 \version "1.5.68"
2
3 \header {
4   texidoc = "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 \score {
16   <
17     \addlyrics
18       \context Staff = one {
19         \property Staff.autoBeaming = ##f
20         \melody
21       }
22       \context Lyrics \text
23   >
24   \paper { }
25   \midi  { }
26 }