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