]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template-with-automatic-piano-reduction.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / vocal-ensemble-template-with-automatic-piano-reduction.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.14.0
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
12   texidoces = "
13
14 Esta plantilla añade una reducción de piano automática a la partitura
15 vocal SATB estándar que se mostró en la @qq{Plantilla de conjunto
16 vocal}. Esto presenta uno de los puntos fuertes de LilyPond: podemos
17 usar una definición de música más de una vez. Si se hace cualquier
18 cambio en las notas de la parte vocal (digamos @code{tenorMusic}),
19 entonces los cambios se aplicarán también a la reducción de piano.
20
21 "
22   doctitlees = "Plantilla de conjunto vocal con reducción de piano automática"
23
24
25 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
26   texidocja = "
27 このテンプレートは、\"合唱テンプレート\"で示された標準の SATB ボーカル譜に自動@c
28 ピアノ譜を付け加えています。これは LilyPond の強みの 1 つを示しています - 音楽@c
29 定義を何回も使用することができます。ボーカルの音符 (例えば、@code{tenorMusic}
30 の音符) に変更が加えられた場合、その変更はピアノ譜にも適用されます。
31 "
32
33 %% Translation of GIT committish: 4077120c18ac1dc490501b3d7d5886bc93e61a42
34   texidocit = "
35 Questo modello aggiunge una riduzione automatica per pianoforte alla tipica
36 partitura vocale SATB illustrata in @qq{Modello per complesso vocale}. Si
37 dimostra così uno dei punti di forza di LilyPond – è possibile usare una
38 definizione musicale più di una volta. Qualsiasi modifica venga fatta alle note
39 delle voci (ad esempio, @code{tenorMusic}) verrà applicata anche alla riduzione
40 per pianoforte.
41 "
42   doctitleit = "Modello per gruppo vocale con automatica riduzione per pianoforte"
43
44 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
45   texidocde = "
46 In diesem Beispiel wird ein automatischer Klavierauszug zu der
47 Chorpartitur hinzugefügt. Das zeigt eine der Stärken von LilyPond
48 -- man kann eine Variable mehr als einmal benutzen. Wenn Sie
49 irgendeine Änderung an einer Chorstimme vornehmen, (etwa
50 tenorMusic), verändert sich auch der Klavierauszug entsprechend.
51 "
52
53
54 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
55   texidocfr = "
56 Ce canevas ajoute une réduction pour piano à une partition standard pour
57 chœur à quatre voix mixtes.  Ceci illustre l'un des avantages de
58 LilyPond : une expression musicale peut être réutilisée sans effort.
59 Toute modification apportée à l'une des voix, mettons @code{tenorMusique},
60 sera automatiquement reportée dans la réduction pour piano.
61
62 "
63   doctitlefr = "Ensemble vocal avec réduction pour piano"
64
65   lsrtags = "vocal-music, keyboards, template"
66
67   texidoc = "
68 This template adds an automatic piano reduction to the standard SATB
69 vocal score demonstrated in @qq{Vocal ensemble template}. This
70 demonstrates one of the strengths of LilyPond – you can use a music
71 definition more than once. If any changes are made to the vocal notes
72 (say, @code{tenorMusic}), then the changes will also apply to the piano
73 reduction.
74 "
75   doctitle = "Vocal ensemble template with automatic piano reduction"
76 } % begin verbatim
77
78
79 \paper {
80   top-system-spacing #'basic-distance = #10
81   score-system-spacing #'basic-distance = #20
82   system-system-spacing #'basic-distance = #20
83   last-bottom-spacing #'basic-distance = #10
84 }
85
86 global = {
87   \key c \major
88   \time 4/4
89 }
90
91 sopMusic = \relative c'' {
92   c4 c c8[( b)] c4
93 }
94 sopWords = \lyricmode {
95   hi hi hi hi
96 }
97
98 altoMusic = \relative c' {
99   e4 f d e
100 }
101 altoWords =\lyricmode {
102   ha ha ha ha
103 }
104
105 tenorMusic = \relative c' {
106   g4 a f g
107 }
108 tenorWords = \lyricmode {
109   hu hu hu hu
110 }
111
112 bassMusic = \relative c {
113   c4 c g c
114 }
115 bassWords = \lyricmode {
116   ho ho ho ho
117 }
118
119 \score {
120   <<
121     \new ChoirStaff <<
122       \new Lyrics = "sopranos" \with {
123         % This is needed for lyrics above a staff
124         \override VerticalAxisGroup #'staff-affinity = #DOWN
125       }
126       \new Staff = "women" <<
127         \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> }
128         \new Voice = "altos" { \voiceTwo << \global \altoMusic >> }
129       >>
130       \new Lyrics = "altos"
131       \new Lyrics = "tenors" \with {
132         % This is needed for lyrics above a staff
133         \override VerticalAxisGroup #'staff-affinity = #DOWN
134       }
135
136       \new Staff = "men" <<
137         \clef bass
138         \new Voice = "tenors" { \voiceOne << \global \tenorMusic >> }
139         \new Voice = "basses" { \voiceTwo << \global \bassMusic >> }
140       >>
141       \new Lyrics = "basses"
142       \context Lyrics = "sopranos" \lyricsto "sopranos" \sopWords
143       \context Lyrics = "altos" \lyricsto "altos" \altoWords
144       \context Lyrics = "tenors" \lyricsto "tenors" \tenorWords
145       \context Lyrics = "basses" \lyricsto "basses" \bassWords
146     >>
147     \new PianoStaff <<
148       \new Staff <<
149         \set Staff.printPartCombineTexts = ##f
150         \partcombine
151         << \global \sopMusic >>
152         << \global \altoMusic >>
153       >>
154       \new Staff <<
155         \clef bass
156         \set Staff.printPartCombineTexts = ##f
157         \partcombine
158         << \global \tenorMusic >>
159         << \global \bassMusic >>
160       >>
161     >>
162   >>
163 }