]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes,-lyrics,-and-chords.ly
Doc-es: pre-merge update of texidoc committishes.
[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.13.1"
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   texidocja = "
21 これは旋律、単語、コードを持つ歌曲の楽譜のためのテンプレートです。
22 "
23
24   texidoc = "
25 This template allows the preparation of a song with melody, words, and
26 chords. 
27
28 "
29   doctitle = "Single staff template with notes, lyrics, and chords"
30 } % begin verbatim
31
32 melody = \relative c' {
33   \clef treble
34   \key c \major
35   \time 4/4
36   
37   a4 b c d
38 }
39
40 text = \lyricmode {
41   Aaa Bee Cee Dee
42 }
43
44 harmonies = \chordmode {
45   a2 c
46 }
47
48 \score {
49   <<
50     \new ChordNames {
51       \set chordChanges = ##t
52       \harmonies
53     }
54     \new Voice = "one" { \autoBeamOff \melody }
55     \new Lyrics \lyricsto "one" \text
56   >>
57   \layout { }
58   \midi { }
59 }