]> git.donarmstrong.com Git - lilypond.git/blob - input/template/melody-lyrics.ly
release: 1.4.5
[lilypond.git] / input / template / melody-lyrics.ly
1 \version "1.5.1"
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 \score {
29   <
30     \addlyrics
31       \context Staff = one {
32         \property Staff.noAutoBeaming = ##t
33         \property Staff.automaticMelismata = ##t
34         \melody
35       }
36       \context Lyrics \text
37   >
38   \paper { }
39   \midi  { }
40 }