]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes,-lyrics,-and-chords.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "template, vocal-music, chords, really-simple"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
27   texidocit = "
28 Ecco il modello di un comune spartito semplificato (lead sheet): include
29 linea melodica, testo vocale, sigle degli accordi e relativi diagrammi
30 per chitarra.
31
32 "
33   doctitleit = "Modello di rigo singolo con note testo accordi e tasti"
34
35 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
36   texidocde = "
37 Mit diesem Beispiel können Sie einen Song mit Melodie,
38 Text und Akkorden schreiben.
39 "
40
41   doctitlede = "Vorlage für eine Notenzeile mit Noten Text und Akkorden"
42
43
44 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
45   texidocfr = "
46 Ce cannevas comporte tous les éléments d'une chanson@tie{}: la mélodie,
47 les paroles, les accords.
48
49 "
50   doctitlefr = "Paroles musique et accords"
51
52   texidoc = "
53 This template allows the preparation of a song with melody, words, and
54 chords.
55
56 "
57   doctitle = "Single staff template with notes lyrics and chords"
58 } % begin verbatim
59
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