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