]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes,-lyrics,-and-chords.ly
Merge commit 'ce4b499'
[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             a b c d
18          }
19          
20          text = \lyricmode {
21             Aaa Bee Cee Dee
22          }
23          
24          harmonies = \chordmode {
25             a2 c2
26          }
27          
28          \score {
29             <<
30                \new ChordNames {
31                   \set chordChanges = ##t
32                   \harmonies
33                }
34             \new Voice = "one" {
35                \autoBeamOff
36                \melody
37             }
38             \new Lyrics \lyricsto "one" \text
39             >>
40             \layout { }
41             \midi { }
42          }
43