]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes,-lyrics,-and-chords.ly
e3589215d59ac35caf43c905d89f09c939d58d99
[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.57"
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   texidoc = "
16 This template allows the preparation of a song with melody, words, and
17 chords. 
18
19 "
20   doctitle = "Single staff template with notes, lyrics, and chords"
21 } % begin verbatim
22 melody = \relative c' {
23   \clef treble
24   \key c \major
25   \time 4/4
26   
27   a4 b c d
28 }
29
30 text = \lyricmode {
31   Aaa Bee Cee Dee
32 }
33
34 harmonies = \chordmode {
35   a2 c
36 }
37
38 \score {
39   <<
40     \new ChordNames {
41       \set chordChanges = ##t
42       \harmonies
43     }
44     \new Voice = "one" { \autoBeamOff \melody }
45     \new Lyrics \lyricsto "one" \text
46   >>
47   \layout { }
48   \midi { }
49 }