]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template-with-verse-and-refrain.ly
72a4d566ca7820ad15457d1a9147b5f45e8be04a
[lilypond.git] / Documentation / snippets / vocal-ensemble-template-with-verse-and-refrain.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 = "contexts-and-engravers, vocal-music, template"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13
14   texidoces = "
15 Esta plantilla crea una partitura que comienza con una estrofa para
16 solista y continúa con un estribillo a dos voces.  también muestra el
17 uso de silencios de separación dentro de la variable @code{\\global}
18 para definir cambios de compás (y otros elementos que son comunes a
19 todas las partes) a lo largo de toda la partitura.
20
21 "
22
23   doctitlees = "Estrofa para solista y estribillo a dos voces"
24
25 %% Translation of GIT committish: 6ae36b6f8a7cf2df5f4e46c3c06820fccd9f35e1
26   texidocit = "
27 Questo modello crea una partitura che inizia con una sezione solistica e
28 prosegue in un ritornello a due voci.  Illustra anche l'uso delle
29 pause spaziatrici all'interno della variabile @code{\\global} per definire
30 i cambi di tempo (e altri elementi comuni a tutte le parti) nel corso di
31 tutta la partitura.
32 "
33   doctitleit = "Modello per gruppo vocale con strofa e ritornello"
34
35 %% Translation of GIT committish: 64feeff58e5ce3397de87188a08ac99f7ef8e37b
36
37   texidocde = "
38 Diese Vorlage erstellt eine Partitur, die mit Sologesang beginnt und einen
39 Refrain für zwei Stimmen enthält.  Sie zeigt auch die Benutzung von
40 Platzhalter-Pausen innerhalb der @code{\\global}-Variable, um Taktwechsel
41 (und andere Elemente, die für alle Stimmen gleich sind) für das gesamte
42 Stück zu definieren.
43
44 "
45   doctitlede = "Sologesang und zweistimmiger Refrain"
46
47 %% Translation of GIT committish: d5307870fe0ad47904daba73792c7e17b813737f
48   texidocfr = "
49 Ce canevas illustre la manière d'agencer une œuvre vocale où le couplet
50 est chanté en solo et le refrain à deux voix.  Vous noterez le recours
51 aux silences invisibles dans la variable @code{\\global} ; ils
52 permettent de positionner les changements de métrique et autres éléments
53 communs à toutes les parties, ce pour l'intégralité du morceau.
54
55 "
56   doctitlefr = "Ensemble vocal avec couplet et refrain"
57
58   texidoc = "
59 This template creates a score which starts with a solo verse and
60 continues into a refrain for two voices.  It also demonstrates the use
61 of spacer rests within the @code{\\global} variable to define meter
62 changes (and other elements common to all parts) throughout the entire
63 score.
64
65 "
66   doctitle = "Vocal ensemble template with verse and refrain"
67 } % begin verbatim
68
69
70 global = {
71   \key g \major
72
73   % verse
74   \time 3/4
75   s2.*2
76   \break
77
78   % refrain
79   \time 2/4
80   s2*2
81   \bar "|."
82 }
83
84 SoloNotes = \relative g' {
85   \clef "treble"
86
87   % verse
88   g4 g g |
89   b4 b b |
90
91   % refrain
92   R2*2 |
93 }
94
95 SoloLyrics = \lyricmode {
96   One two three |
97   four five six |
98 }
99
100 SopranoNotes = \relative c'' {
101   \clef "treble"
102
103   % verse
104   R2.*2 |
105
106   % refrain
107   c4 c |
108   g4 g |
109 }
110
111 SopranoLyrics = \lyricmode {
112   la la |
113   la la |
114 }
115
116 BassNotes = \relative c {
117   \clef "bass"
118
119   % verse
120   R2.*2 |
121
122   % refrain
123   c4 e |
124   d4 d |
125 }
126
127 BassLyrics = \lyricmode {
128   dum dum |
129   dum dum |
130 }
131
132 \score {
133   <<
134     \new Voice = "SoloVoice" << \global \SoloNotes >>
135     \new Lyrics \lyricsto "SoloVoice" \SoloLyrics
136
137     \new ChoirStaff <<
138       \new Voice = "SopranoVoice" << \global \SopranoNotes >>
139       \new Lyrics \lyricsto "SopranoVoice" \SopranoLyrics
140
141       \new Voice = "BassVoice" << \global \BassNotes >>
142       \new Lyrics \lyricsto "BassVoice" \BassLyrics
143     >>
144   >>
145   \layout {
146     ragged-right = ##t
147     \context { \Staff
148       % these lines prevent empty staves from being printed
149       \RemoveEmptyStaves
150       \override VerticalAxisGroup #'remove-first = ##t
151     }
152   }
153 }
154