]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template-with-verse-and-refrain.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[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.21
5 \version "2.13.31"
6
7 \header {
8 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
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   lsrtags = "vocal-music, contexts-and-engravers, template"
34   texidoc = "
35 This template creates a score which starts with a solo verse and
36 continues into a refrain for two voices.  It also demonstrates the
37 use of spacer rests within the @code{\global} variable to define
38 meter changes (and other elements common to all parts) throughout
39 the entire score.
40 "
41   doctitle = "Vocal ensemble template with verse and refrain"
42 } % begin verbatim
43
44
45 global = {
46   \key g \major
47
48   % verse
49   \time 3/4
50   s2.*2
51   \break
52
53   % refrain
54   \time 2/4
55   s2*2
56   \bar "|."
57 }
58
59 SoloNotes = \relative g' {
60   \clef "treble"
61
62   % verse
63   g4 g g |
64   b4 b b |
65
66   % refrain
67   R2*2 |
68 }
69
70 SoloLyrics = \lyricmode {
71   One two three |
72   four five six |
73 }
74
75 SopranoNotes = \relative c'' {
76   \clef "treble"
77
78   % verse
79   R2.*2 |
80
81   % refrain
82   c4 c |
83   g4 g |
84 }
85
86 SopranoLyrics = \lyricmode {
87   la la |
88   la la |
89 }
90
91 BassNotes = \relative c {
92   \clef "bass"
93
94   % verse
95   R2.*2 |
96
97   % refrain
98   c4 e |
99   d4 d |
100 }
101
102 BassLyrics = \lyricmode {
103   dum dum |
104   dum dum |
105 }
106
107 \score {
108   <<
109     \new Voice = "SoloVoice" << \global \SoloNotes >>
110     \new Lyrics \lyricsto "SoloVoice" \SoloLyrics
111
112     \new ChoirStaff <<
113       \new Voice = "SopranoVoice" << \global \SopranoNotes >>
114       \new Lyrics \lyricsto "SopranoVoice" \SopranoLyrics
115
116       \new Voice = "BassVoice" << \global \BassNotes >>
117       \new Lyrics \lyricsto "BassVoice" \BassLyrics
118     >>
119   >>
120   \layout {
121     ragged-right = ##t
122     \context { \Staff
123       % these lines prevent empty staves from being printed
124       \RemoveEmptyStaves
125       \override VerticalAxisGroup #'remove-first = ##t
126     }
127   }
128 }
129