]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes,-lyrics,-and-chords.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / single-staff-template-with-notes,-lyrics,-and-chords.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "vocal-music, chords, template"
8
9 %% Translation of GIT committish: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
10   texidoces = "
11 Esta plantilla facilita la preparación de una canción con melodía,
12 letra y acordes.
13
14 "
15   doctitlees = "Plantilla de pentagrama único con música letra y acordes"
16
17
18 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
19   texidocja = "
20 これは旋律、単語、コードを持つ歌曲の楽譜のためのテンプレートです。
21 "
22
23 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
24   texidocde = "
25 Mit diesem Beispiel können Sie einen Song mit Melodie,
26 Text und Akkorden schreiben.
27 "
28
29   doctitlede = "Vorlage für eine Notenzeile mit Noten Text und Akkorden"
30
31
32 %% Translation of GIT committish: 9ba35398048fdf1ca8c83679c7c144b1fd48e75b
33   texidocfr = "
34 Ce cannevas comporte tous les éléments d'une chanson : la mélodie,
35 les paroles, les accords.
36
37 "
38   doctitlefr = "Paroles musique et accords"
39
40   texidoc = "
41 This template allows the preparation of a song with melody, words, and
42 chords.
43
44 "
45   doctitle = "Single staff template with notes lyrics and chords"
46 } % begin verbatim
47
48 melody = \relative c' {
49   \clef treble
50   \key c \major
51   \time 4/4
52
53   a4 b c d
54 }
55
56 text = \lyricmode {
57   Aaa Bee Cee Dee
58 }
59
60 harmonies = \chordmode {
61   a2 c
62 }
63
64 \score {
65   <<
66     \new ChordNames {
67       \set chordChanges = ##t
68       \harmonies
69     }
70     \new Voice = "one" { \autoBeamOff \melody }
71     \new Lyrics \lyricsto "one" \text
72   >>
73   \layout { }
74   \midi { }
75 }
76