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