]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template-with-automatic-piano-reduction.ly
9877a5a8bc7476268f019c72dc72fcd5dd86467d
[lilypond.git] / Documentation / snippets / vocal-ensemble-template-with-automatic-piano-reduction.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "vocal-music, keyboards, template"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   texidoces = "
11
12 Esta plantilla añade una reducción de piano automática a la partitura
13 vocal SATB estándar que se mostró en la @qq{Plantilla de conjunto
14 vocal}. Esto presenta uno de los puntos fuertes de LilyPond: podemos
15 usar una definición de música más de una vez. Si se hace cualquier
16 cambio en las notas de la parte vocal (digamos @code{tenorMusic}),
17 entonces los cambios se aplicarán también a la reducción de piano.
18
19 "
20   doctitlees = "Plantilla de conjunto vocal con reducción de piano automática"
21
22 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
23   texidocja = "
24 このテンプレートは、\"合唱テンプレート\"で示された標準の SATB ボーカル譜に自動@c
25 ピアノ譜を付け加えています。これは LilyPond の強みの 1 つを示しています - 音楽@c
26 定義を何回も使用することができます。ボーカルの音符 (例えば、@code{tenorMusic}
27 の音符) に変更が加えられた場合、その変更はピアノ譜にも適用されます。
28 "
29 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
30   texidocde = "
31 In diesem Beispiel wird ein automatischer Klavierauszug zu der
32 Chorpartitur hinzugefügt. Das zeigt eine der Stärken von LilyPond
33 -- man kann eine Variable mehr als einmal benutzen. Wenn Sie
34 irgendeine Änderung an einer Chorstimme vornehmen, (etwa
35 tenorMusic), verändert sich auch der Klavierauszug entsprechend.
36 "
37
38 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
39   texidocfr = "
40 Ce canevas ajoute une réduction pour piano à une partition standard pour
41 chœur à quatre voix mixtes.  Ceci illustre l'un des avantages de
42 LilyPond : une expression musicale peut être réutilisée sans effort.
43 Toute modification apportée à l'une des voix, mettons @code{tenorMusique},
44 sera automatiquement reportée dans la réduction pour piano.
45
46 "
47   doctitlefr = "Ensemble vocal avec réduction pour piano"
48
49   texidoc = "
50 This template adds an automatic piano reduction to the standard SATB
51 vocal score demonstrated in @qq{Vocal ensemble template}. This
52 demonstrates one of the strengths of LilyPond – you can use a music
53 definition more than once. If any changes are made to the vocal notes
54 (say, @code{tenorMusic}), then the changes will also apply to the piano
55 reduction.
56
57 "
58   doctitle = "Vocal ensemble template with automatic piano reduction"
59 } % begin verbatim
60
61 global = {
62   \key c \major
63   \time 4/4
64 }
65
66 sopMusic = \relative c'' {
67   c4 c c8[( b)] c4
68 }
69 sopWords = \lyricmode {
70   hi hi hi hi
71 }
72
73 altoMusic = \relative c' {
74   e4 f d e
75 }
76 altoWords =\lyricmode {
77   ha ha ha ha
78 }
79
80 tenorMusic = \relative c' {
81   g4 a f g
82 }
83 tenorWords = \lyricmode {
84   hu hu hu hu
85 }
86
87 bassMusic = \relative c {
88   c4 c g c
89 }
90 bassWords = \lyricmode {
91   ho ho ho ho
92 }
93
94 \score {
95   <<
96     \new ChoirStaff <<
97       \new Lyrics = sopranos { s1 }
98       \new Staff = women <<
99         \new Voice = sopranos { \voiceOne << \global \sopMusic >> }
100         \new Voice = altos { \voiceTwo << \global \altoMusic >> }
101       >>
102       \new Lyrics = altos { s1 }
103       \new Lyrics = tenors { s1 }
104       \new Staff = men <<
105         \clef bass
106         \new Voice = tenors { \voiceOne <<\global \tenorMusic >> }
107         \new Voice = basses { \voiceTwo <<\global \bassMusic >> }
108       >>
109       \new Lyrics = basses { s1 }
110       \context Lyrics = sopranos \lyricsto sopranos \sopWords
111       \context Lyrics = altos \lyricsto altos \altoWords
112       \context Lyrics = tenors \lyricsto tenors \tenorWords
113       \context Lyrics = basses \lyricsto basses \bassWords
114     >>
115     \new PianoStaff <<
116       \new Staff <<
117         \set Staff.printPartCombineTexts = ##f
118         \partcombine
119         << \global \sopMusic >>
120         << \global \altoMusic >>
121       >>
122       \new Staff <<
123         \clef bass
124         \set Staff.printPartCombineTexts = ##f
125         \partcombine
126         << \global \tenorMusic >>
127         << \global \bassMusic >>
128       >>
129     >>
130   >>
131   \layout {
132     \context {
133       % a little smaller so lyrics
134       % can be closer to the staff
135       \Staff
136       \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
137     }
138   }
139 }
140