]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes,-lyrics,-and-chords.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into dev...
[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  texidoc = "
8 This template allows you to prepare a song with melody, words, and
9 chords. 
10 " }
11 % begin verbatim
12 melody = \relative c' {
13   \clef treble
14   \key c \major
15   \time 4/4
16   
17   a4 b c d
18
19 }
20
21 text = \lyricmode {
22   Aaa Bee Cee Dee
23 }
24
25 harmonies = \chordmode {
26   a2 c
27 }
28
29 \score {
30   <<
31     \new ChordNames {
32       \set chordChanges = ##t
33       \harmonies
34     }
35     \new Voice = "one" { \autoBeamOff \melody }
36     \new Lyrics \lyricsto "one" \text
37   >>
38   \layout { }
39   \midi { }
40 }