]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes,-lyrics,-and-chords.ly
Make the length of beamlets configurable.
[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.64"
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
28 melody = \relative c' {
29   \clef treble
30   \key c \major
31   \time 4/4
32   
33   a4 b c d
34 }
35
36 text = \lyricmode {
37   Aaa Bee Cee Dee
38 }
39
40 harmonies = \chordmode {
41   a2 c
42 }
43
44 \score {
45   <<
46     \new ChordNames {
47       \set chordChanges = ##t
48       \harmonies
49     }
50     \new Voice = "one" { \autoBeamOff \melody }
51     \new Lyrics \lyricsto "one" \text
52   >>
53   \layout { }
54   \midi { }
55 }