]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes,-lyrics,-and-chords.ly
569c8fd59a3082bc979fa55978b253dba48a641f
[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 %% Translation of GIT committish: 7e2910d2bc6167b10cfe328eb17a5f710f2a515a
9   texidoces = "
10 Esta plantilla facilita la preparación de una canción con melodía,
11 letra y acordes.
12
13 "
14   doctitlees = "Plantilla de pentagrama único con música, letra y acordes"
15   
16 %% Translation of GIT committish: 17633f6b8681af86230aa84597fe7561e98c91d6
17   texidocde = "
18 Mit diesem Beispiel können Sie einen Song mit Melodie, 
19 Text und Akkorden schreiben.
20 "
21
22 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
23   texidocja = "
24 これは旋律、単語、コードを持つ歌曲の楽譜のためのテンプレートです。
25 "
26
27   texidoc = "
28 This template allows the preparation of a song with melody, words, and
29 chords. 
30
31 "
32   doctitle = "Single staff template with notes, lyrics, and chords"
33 } % begin verbatim
34
35 melody = \relative c' {
36   \clef treble
37   \key c \major
38   \time 4/4
39   
40   a4 b c d
41 }
42
43 text = \lyricmode {
44   Aaa Bee Cee Dee
45 }
46
47 harmonies = \chordmode {
48   a2 c
49 }
50
51 \score {
52   <<
53     \new ChordNames {
54       \set chordChanges = ##t
55       \harmonies
56     }
57     \new Voice = "one" { \autoBeamOff \melody }
58     \new Lyrics \lyricsto "one" \text
59   >>
60   \layout { }
61   \midi { }
62 }
63