]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes-and-lyrics.ly
Merge master into nested-bookparts
[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.11.62"
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   texidoc = "
29 This small template demonstrates a simple melody with lyrics. Cut and
30 paste, add notes, then words for the lyrics. This example turns off
31 automatic beaming, which is common for vocal parts. To use automatic
32 beaming, change or comment out the relevant line.
33
34 "
35   doctitle = "Single staff template with notes and lyrics"
36 } % begin verbatim
37 melody = \relative c' {
38   \clef treble
39   \key c \major
40   \time 4/4
41   
42   a4 b c d
43 }
44
45 text = \lyricmode {
46   Aaa Bee Cee Dee
47 }
48
49 \score{
50   <<
51     \new Voice = "one" {
52       \autoBeamOff
53       \melody
54     }
55     \new Lyrics \lyricsto "one" \text
56   >>
57   \layout { }
58   \midi { }
59 }