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