]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes-and-lyrics.ly
e78889a5bb14fc6e34c70891a29c0cba3b18a41a
[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.39"
5
6 \header {
7   lsrtags = "vocal-music, template"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
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: fa1aa6efe68346f465cfdb9565ffe35083797b86
22   texidocja = "
23 この小さなテンプレートは歌詞を持つ簡単な旋律を表しています。カット&ペーストして、音符@c
24 を付け加えて、それから歌詞の単語を付け加えてください。この例は自動ビームを off にして@c
25 います。これはボーカル パートでは一般的なことです。自動ビームを使用するには、対応する@c
26 行を変更するか、コメント アウトしてください。
27 "
28
29
30 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
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: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
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