]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes-and-lyrics.ly
LSR: Update.
[lilypond.git] / input / lsr / 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.0"
4
5 \header {
6   lsrtags = "vocal-music, template"
7
8   texidoces = "
9 Esta pequeña plantilla muestra una melodía sencilla con letra. Córtela
10 y péguela, escriba las notas y luego la letra. Este ejemplo desactiva
11 el barrado automático, que es lo más frecuente en las partes vocales
12 antiguas. Para usar el barrado automático modifique o marque como un
13 comentario la línea correspondiente.
14
15 "
16   doctitlees = "Plantilla de pentagrama único don notas y letra"
17   
18   texidocde = "
19 Das nächste Beispiel zeigt eine einfache Melodie mit Text. Kopieren 
20 Sie es in Ihre Datei, fügen Sie Noten und Text hinzu und übersetzen 
21 Sie es mit LilyPond. In dem Beispiel wird die automatische 
22 Balkenverbindung ausgeschaltet (mit dem Befehl @code{\autoBeamOff}), 
23 wie es für Vokalmusik üblich ist. 
24 Wenn Sie die Balken wieder einschalten wollen, müssen Sie die 
25 entsprechende Zeile entweder ändern oder auskommentieren.
26 "
27
28   texidocja = "
29 この小さなテンプレートは歌詞を持つ簡単な旋律を表しています。カット&ペーストして、音符@c
30 を付け加えて、それから歌詞の単語を付け加えてください。この例は自動ビームを off にして@c
31 います。これはボーカル パートでは一般的なことです。自動ビームを使用するには、対応する@c
32 行を変更するか、コメント アウトしてください。
33 "
34
35
36   texidoc = "
37 This small template demonstrates a simple melody with lyrics. Cut and
38 paste, add notes, then words for the lyrics. This example turns off
39 automatic beaming, which is common for vocal parts. To use automatic
40 beaming, change or comment out the relevant line.
41
42 "
43   doctitle = "Single staff template with notes and lyrics"
44 } % begin verbatim
45
46 melody = \relative c' {
47   \clef treble
48   \key c \major
49   \time 4/4
50   
51   a4 b c d
52 }
53
54 text = \lyricmode {
55   Aaa Bee Cee Dee
56 }
57
58 \score{
59   <<
60     \new Voice = "one" {
61       \autoBeamOff
62       \melody
63     }
64     \new Lyrics \lyricsto "one" \text
65   >>
66   \layout { }
67   \midi { }
68 }