]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes-and-lyrics.ly
Doc: update snippet committishes.
[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.10"
5
6 \header {
7   lsrtags = "vocal-music, template"
8
9 %% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971
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 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
21   texidocja = "
22 この小さなテンプレートは歌詞を持つ簡単な旋律を表しています。カット&ペーストして、音符@c
23 を付け加えて、それから歌詞の単語を付け加えてください。この例は自動ビームを off にして@c
24 います。これはボーカル パートでは一般的なことです。自動ビームを使用するには、対応する@c
25 行を変更するか、コメント アウトしてください。
26 "
27
28 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
29   texidocde = "
30 Das nächste Beispiel zeigt eine einfache Melodie mit Text. Kopieren
31 Sie es in Ihre Datei, fügen Sie Noten und Text hinzu und übersetzen
32 Sie es mit LilyPond. In dem Beispiel wird die automatische
33 Balkenverbindung ausgeschaltet (mit dem Befehl @code{\autoBeamOff}),
34 wie es für Vokalmusik üblich ist.
35 Wenn Sie die Balken wieder einschalten wollen, müssen Sie die
36 entsprechende Zeile entweder ändern oder auskommentieren.
37 "
38
39   doctitlede = "Vorlage für ein Notensystem mit Noten und Gesangstext"
40
41 %% Translation of GIT committish: 892286cbfdbe89420b8181975032ea975e79d2f5
42
43   texidocfr = "
44 Ce canevas comporte une simple ligne mélodique agrémentée de paroles.
45 Recopiez-le, ajoutez-y d'autres notes et paroles.  Les ligatures
46 automatiques sont ici désactivées, comme il est d'usage en matière de
47 musique vocale.  Pour activer la fonction de ligature automatique,
48 modifiez ou commentez la ligne en question.
49
50 "
51   doctitlefr = "Portée unique et paroles"
52
53   texidoc = "
54 This small template demonstrates a simple melody with lyrics. Cut and
55 paste, add notes, then words for the lyrics. This example turns off
56 automatic beaming, which is common for vocal parts. To use automatic
57 beaming, change or comment out the relevant line.
58
59 "
60   doctitle = "Single staff template with notes and lyrics"
61 } % begin verbatim
62
63 melody = \relative c' {
64   \clef treble
65   \key c \major
66   \time 4/4
67
68   a4 b c d
69 }
70
71 text = \lyricmode {
72   Aaa Bee Cee Dee
73 }
74
75 \score{
76   <<
77     \new Voice = "one" {
78       \autoBeamOff
79       \melody
80     }
81     \new Lyrics \lyricsto "one" \text
82   >>
83   \layout { }
84   \midi { }
85 }
86