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