]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes,-lyrics,-and-chords.ly
Merge commit 'csorensen/fret-diagram-details'
[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.49"
4
5 \header {
6   lsrtags = "vocal-music, chords, template"
7
8   texidoc = "
9 This template allows the preparation of 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 text = \lyricmode {
24   Aaa Bee Cee Dee
25 }
26
27 harmonies = \chordmode {
28   a2 c
29 }
30
31 \score {
32   <<
33     \new ChordNames {
34       \set chordChanges = ##t
35       \harmonies
36     }
37     \new Voice = "one" { \autoBeamOff \melody }
38     \new Lyrics \lyricsto "one" \text
39   >>
40   \layout { }
41   \midi { }
42 }