Start pictograms branch.
[lilypond/mpolesky.git] / Documentation / snippets / vocal-ensemble-template-with-verse-and-refrain.ly
blob3d70986120311cd3a59472768f3c912d0276ae74
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.21
5 \version "2.13.31"
7 \header {
8 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
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.
19 doctitlees = "Estrofa para solista y estribillo a dos voces"
21 %% Translation of GIT committish: 64feeff58e5ce3397de87188a08ac99f7ef8e37b
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.
31 doctitlede = "Sologesang und zweistimmiger Refrain"
33 %% Translation of GIT committish: 26375d5016d8d180fc914bfd07cf76f4168f2e37
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.
42 doctitlefr = "Ensemble vocal avec couplet et refrain"
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.
52 doctitle = "Vocal ensemble template with verse and refrain"
53 } % begin verbatim
56 global = {
57 \key g \major
59 % verse
60 \time 3/4
61 s2.*2
62 \break
64 % refrain
65 \time 2/4
66 s2*2
67 \bar "|."
70 SoloNotes = \relative g' {
71 \clef "treble"
73 % verse
74 g4 g g |
75 b4 b b |
77 % refrain
78 R2*2 |
81 SoloLyrics = \lyricmode {
82 One two three |
83 four five six |
86 SopranoNotes = \relative c'' {
87 \clef "treble"
89 % verse
90 R2.*2 |
92 % refrain
93 c4 c |
94 g4 g |
97 SopranoLyrics = \lyricmode {
98 la la |
99 la la |
102 BassNotes = \relative c {
103 \clef "bass"
105 % verse
106 R2.*2 |
108 % refrain
109 c4 e |
110 d4 d |
113 BassLyrics = \lyricmode {
114 dum dum |
115 dum dum |
118 \score {
120 \new Voice = "SoloVoice" << \global \SoloNotes >>
121 \new Lyrics \lyricsto "SoloVoice" \SoloLyrics
123 \new ChoirStaff <<
124 \new Voice = "SopranoVoice" << \global \SopranoNotes >>
125 \new Lyrics \lyricsto "SopranoVoice" \SopranoLyrics
127 \new Voice = "BassVoice" << \global \BassNotes >>
128 \new Lyrics \lyricsto "BassVoice" \BassLyrics
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