]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes-and-lyrics.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / single-staff-template-with-notes-and-lyrics.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   lsrtags = "vocal-music, template"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 Esta pequeña plantilla muestra una melodía sencilla con letra. Córtela
15 y péguela, escriba las notas y luego la letra. Este ejemplo desactiva
16 el barrado automático, que es lo más frecuente en las partes vocales
17 antiguas. Para usar el barrado automático modifique o marque como un
18 comentario la línea correspondiente.
19
20 "
21   doctitlees = "Plantilla de pentagrama único don notas y letra"
22
23
24 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
25   texidocja = "
26 この小さなテンプレートは歌詞を持つ簡単な旋律を表しています。カット&ペーストして、音符@c
27 を付け加えて、それから歌詞の単語を付け加えてください。この例は自動ビームを off にして@c
28 います。これはボーカル パートでは一般的なことです。自動ビームを使用するには、対応する@c
29 行を変更するか、コメント アウトしてください。
30 "
31
32
33 %% Translation of GIT committish: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
34   texidocit = "
35 Questo piccolo modello presenta una semplice linea melodica con un testo. Copialo
36 e incollalo, aggiungi le note e le parole. Questo esempio disabilita la
37 disposizione automatica delle travature, come è consuetudine per le parti
38 vocali. Per usare la disposizione automatica delle travature, cambia o
39 commenta la relativa linea di codice.
40
41 "
42   doctitleit = "Modello di rigo singolo con note e testo"
43
44 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
45   texidocde = "
46 Das nächste Beispiel zeigt eine einfache Melodie mit Text. Kopieren
47 Sie es in Ihre Datei, fügen Sie Noten und Text hinzu und übersetzen
48 Sie es mit LilyPond. In dem Beispiel wird die automatische
49 Balkenverbindung ausgeschaltet (mit dem Befehl @code{\\autoBeamOff}),
50 wie es für Vokalmusik üblich ist.
51 Wenn Sie die Balken wieder einschalten wollen, müssen Sie die
52 entsprechende Zeile entweder ändern oder auskommentieren.
53 "
54
55   doctitlede = "Vorlage für ein Notensystem mit Noten und Gesangstext"
56
57
58 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
59   texidocfr = "
60 Ce canevas comporte une simple ligne mélodique agrémentée de paroles.
61 Recopiez-le, ajoutez-y d'autres notes et paroles.  Les ligatures
62 automatiques sont ici désactivées, comme il est d'usage en matière de
63 musique vocale.  Pour activer la fonction de ligature automatique,
64 modifiez ou commentez la ligne en question.
65
66 "
67   doctitlefr = "Portée unique et paroles"
68
69   texidoc = "
70 This small template demonstrates a simple melody with lyrics. Cut and
71 paste, add notes, then words for the lyrics. This example turns off
72 automatic beaming, which is common for vocal parts. To use automatic
73 beaming, change or comment out the relevant line.
74
75 "
76   doctitle = "Single staff template with notes and lyrics"
77 } % begin verbatim
78
79 melody = \relative c' {
80   \clef treble
81   \key c \major
82   \time 4/4
83
84   a4 b c d
85 }
86
87 text = \lyricmode {
88   Aaa Bee Cee Dee
89 }
90
91 \score{
92   <<
93     \new Voice = "one" {
94       \autoBeamOff
95       \melody
96     }
97     \new Lyrics \lyricsto "one" \text
98   >>
99   \layout { }
100   \midi { }
101 }
102