]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes-and-lyrics.ly
Docs: run convert-ly for 2.14.0.
[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   lsrtags = "vocal-music, template"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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: 0a868be38a775ecb1ef935b079000cebbc64de40
34   texidocde = "
35 Das nächste Beispiel zeigt eine einfache Melodie mit Text. Kopieren
36 Sie es in Ihre Datei, fügen Sie Noten und Text hinzu und übersetzen
37 Sie es mit LilyPond. In dem Beispiel wird die automatische
38 Balkenverbindung ausgeschaltet (mit dem Befehl @code{\\autoBeamOff}),
39 wie es für Vokalmusik üblich ist.
40 Wenn Sie die Balken wieder einschalten wollen, müssen Sie die
41 entsprechende Zeile entweder ändern oder auskommentieren.
42 "
43
44   doctitlede = "Vorlage für ein Notensystem mit Noten und Gesangstext"
45
46
47 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
48
49   texidocfr = "
50 Ce canevas comporte une simple ligne mélodique agrémentée de paroles.
51 Recopiez-le, ajoutez-y d'autres notes et paroles.  Les ligatures
52 automatiques sont ici désactivées, comme il est d'usage en matière de
53 musique vocale.  Pour activer la fonction de ligature automatique,
54 modifiez ou commentez la ligne en question.
55
56 "
57   doctitlefr = "Portée unique et paroles"
58
59   texidoc = "
60 This small template demonstrates a simple melody with lyrics. Cut and
61 paste, add notes, then words for the lyrics. This example turns off
62 automatic beaming, which is common for vocal parts. To use automatic
63 beaming, change or comment out the relevant line.
64
65 "
66   doctitle = "Single staff template with notes and lyrics"
67 } % begin verbatim
68
69 melody = \relative c' {
70   \clef treble
71   \key c \major
72   \time 4/4
73
74   a4 b c d
75 }
76
77 text = \lyricmode {
78   Aaa Bee Cee Dee
79 }
80
81 \score{
82   <<
83     \new Voice = "one" {
84       \autoBeamOff
85       \melody
86     }
87     \new Lyrics \lyricsto "one" \text
88   >>
89   \layout { }
90   \midi { }
91 }
92