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