]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes,-lyrics,-and-chords.ly
Merge branch 'master' into lilypond/translation
[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.14.0"
8
9 \header {
10 %% Translation of GIT committish: 4077120c18ac1dc490501b3d7d5886bc93e61a42
11   texidocit = "
12 Ecco il modello di un semplice lead sheet che include melodia, testo, accordi e
13 diagrammi dei tasti.
14
15 "
16   doctitleit = "Modello di rigo singolo con note testo accordi e tasti"
17
18   lsrtags = "vocal-music, chords, template"
19
20
21
22 %% Translation of GIT committish: 615cbf212fdaf0b220b3330da417d0c3602494f2
23   texidoces = "
24 Esta plantilla facilita la preparación de una canción con melodía,
25 letra y acordes.
26
27 "
28   doctitlees = "Plantilla de pentagrama único con música letra y acordes"
29
30
31 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
32   texidocja = "
33 これは旋律、単語、コードを持つ歌曲の楽譜のためのテンプレートです。
34 "
35
36 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
37   texidocde = "
38 Mit diesem Beispiel können Sie einen Song mit Melodie,
39 Text und Akkorden schreiben.
40 "
41
42   doctitlede = "Vorlage für eine Notenzeile mit Noten Text und Akkorden"
43
44
45 %% Translation of GIT committish: ceb0afe7d4d0bdb3d17b9d0bff7936bb2a424d16
46   texidocfr = "
47 Ce cannevas comporte tous les éléments d'une chanson : la mélodie,
48 les paroles, les accords.
49
50 "
51   doctitlefr = "Paroles musique et accords"
52
53   texidoc = "
54 This template allows the preparation of a song with melody, words, and
55 chords.
56
57 "
58   doctitle = "Single staff template with notes lyrics and chords"
59 } % begin verbatim
60
61 melody = \relative c' {
62   \clef treble
63   \key c \major
64   \time 4/4
65
66   a4 b c d
67 }
68
69 text = \lyricmode {
70   Aaa Bee Cee Dee
71 }
72
73 harmonies = \chordmode {
74   a2 c
75 }
76
77 \score {
78   <<
79     \new ChordNames {
80       \set chordChanges = ##t
81       \harmonies
82     }
83     \new Voice = "one" { \autoBeamOff \melody }
84     \new Lyrics \lyricsto "one" \text
85   >>
86   \layout { }
87   \midi { }
88 }
89