]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template-with-automatic-piano-reduction.ly
4661b74deabc42ff1102052048b0ffeec25d15b2
[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 LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "template, vocal-music, keyboards, automatic-notation"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14
15 Esta plantilla añade una reducción de piano automática a la partitura
16 vocal SATB estándar que se mostró en la @qq{Plantilla de conjunto
17 vocal}. Esto presenta uno de los puntos fuertes de LilyPond: podemos
18 usar una definición de música más de una vez. Si se hace cualquier
19 cambio en las notas de la parte vocal (digamos @code{tenorMusic}),
20 entonces los cambios se aplicarán también a la reducción de piano.
21
22 "
23   doctitlees = "Plantilla de conjunto vocal con reducción de piano automática"
24
25
26 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
27   texidocja = "
28 このテンプレートは、\"合唱テンプレート\"で示された標準の SATB ボーカル譜に自動@c
29 ピアノ譜を付け加えています。これは LilyPond の強みの 1 つを示しています - 音楽@c
30 定義を何回も使用することができます。ボーカルの音符 (例えば、@code{tenorMusic}
31 の音符) に変更が加えられた場合、その変更はピアノ譜にも適用されます。
32 "
33
34 %% Translation of GIT committish: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
35   texidocit = "
36 Questo modello aggiunge una riduzione automatica per pianoforte alla tipica
37 partitura vocale SATB illustrata in @qq{Modello per complesso vocale}. Si
38 dimostra così uno dei punti di forza di LilyPond – è possibile usare una
39 definizione musicale più di una volta. Qualsiasi modifica venga fatta alle note
40 delle voci (ad esempio, @code{tenorMusic}) verrà applicata anche alla riduzione
41 per pianoforte.
42 "
43   doctitleit = "Modello per gruppo vocale con automatica riduzione per pianoforte"
44
45 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
46   texidocde = "
47 In diesem Beispiel wird ein automatischer Klavierauszug zu der
48 Chorpartitur hinzugefügt. Das zeigt eine der Stärken von LilyPond
49 -- man kann eine Variable mehr als einmal benutzen. Wenn Sie
50 irgendeine Änderung an einer Chorstimme vornehmen, (etwa
51 tenorMusic), verändert sich auch der Klavierauszug entsprechend.
52 "
53
54
55 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
56   texidocfr = "
57 Ce canevas ajoute une réduction pour piano à une partition standard pour
58 chœur à quatre voix mixtes.  Ceci illustre l'un des avantages de
59 LilyPond@tie{}: une expression musicale peut être réutilisée sans effort.
60 Toute modification apportée à l'une des voix, mettons @code{tenorMusique},
61 sera automatiquement reportée dans la réduction pour piano.
62
63 "
64   doctitlefr = "Ensemble vocal avec réduction pour piano"
65
66   texidoc = "
67 This template adds an automatic piano reduction to the standard SATB
68 vocal score demonstrated in @qq{Vocal ensemble template}. This
69 demonstrates one of the strengths of LilyPond – you can use a music
70 definition more than once. If any changes are made to the vocal notes
71 (say, @code{tenorMusic}), then the changes will also apply to the piano
72 reduction.
73
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 }