]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes,-lyrics,-and-chords.ly
Fix make loop
[lilypond.git] / input / lsr / single-staff-template-with-notes,-lyrics,-and-chords.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "vocal-music, chords, template"
7
8   texidoc = "
9 This template allows you to prepare a song with melody, words, and
10 chords. 
11
12 "
13   doctitle = "Single staff template with notes, lyrics, and chords"
14 } % begin verbatim
15 melody = \relative c' {
16   \clef treble
17   \key c \major
18   \time 4/4
19   
20   a4 b c d
21
22 }
23
24 text = \lyricmode {
25   Aaa Bee Cee Dee
26 }
27
28 harmonies = \chordmode {
29   a2 c
30 }
31
32 \score {
33   <<
34     \new ChordNames {
35       \set chordChanges = ##t
36       \harmonies
37     }
38     \new Voice = "one" { \autoBeamOff \melody }
39     \new Lyrics \lyricsto "one" \text
40   >>
41   \layout { }
42   \midi { }
43 }