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