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