]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes,-lyrics,-and-chords.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "vocal-music, chords, template"
7
8   texidoces = "
9 Esta plantilla facilita la preparación de una canción con melodía,
10 letra y acordes.
11
12 "
13   doctitlees = "Plantilla de pentagrama único con música, letra y acordes"
14   
15   texidocde = "
16 Mit diesem Beispiel können Sie einen Song mit Melodie, 
17 Text und Akkorden schreiben.
18 "
19
20   texidoc = "
21 This template allows the preparation of a song with melody, words, and
22 chords. 
23
24 "
25   doctitle = "Single staff template with notes, lyrics, and chords"
26 } % begin verbatim
27 melody = \relative c' {
28   \clef treble
29   \key c \major
30   \time 4/4
31   
32   a4 b c d
33 }
34
35 text = \lyricmode {
36   Aaa Bee Cee Dee
37 }
38
39 harmonies = \chordmode {
40   a2 c
41 }
42
43 \score {
44   <<
45     \new ChordNames {
46       \set chordChanges = ##t
47       \harmonies
48     }
49     \new Voice = "one" { \autoBeamOff \melody }
50     \new Lyrics \lyricsto "one" \text
51   >>
52   \layout { }
53   \midi { }
54 }