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