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