]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template-with-automatic-piano-reduction.ly
Docs: run convert-ly for 2.14.0.
[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.13.47
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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: 0a868be38a775ecb1ef935b079000cebbc64de40
34   texidocde = "
35 In diesem Beispiel wird ein automatischer Klavierauszug zu der
36 Chorpartitur hinzugefügt. Das zeigt eine der Stärken von LilyPond
37 -- man kann eine Variable mehr als einmal benutzen. Wenn Sie
38 irgendeine Änderung an einer Chorstimme vornehmen, (etwa
39 tenorMusic), verändert sich auch der Klavierauszug entsprechend.
40 "
41
42
43 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
44   texidocfr = "
45 Ce canevas ajoute une réduction pour piano à une partition standard pour
46 chœur à quatre voix mixtes.  Ceci illustre l'un des avantages de
47 LilyPond : une expression musicale peut être réutilisée sans effort.
48 Toute modification apportée à l'une des voix, mettons @code{tenorMusique},
49 sera automatiquement reportée dans la réduction pour piano.
50
51 "
52   doctitlefr = "Ensemble vocal avec réduction pour piano"
53
54   lsrtags = "vocal-music, keyboards, template"
55
56   texidoc = "
57 This template adds an automatic piano reduction to the standard SATB
58 vocal score demonstrated in @qq{Vocal ensemble template}. This
59 demonstrates one of the strengths of LilyPond – you can use a music
60 definition more than once. If any changes are made to the vocal notes
61 (say, @code{tenorMusic}), then the changes will also apply to the piano
62 reduction.
63 "
64   doctitle = "Vocal ensemble template with automatic piano reduction"
65 } % begin verbatim
66
67
68 \paper {
69   top-system-spacing #'basic-distance = #10
70   score-system-spacing #'basic-distance = #20
71   system-system-spacing #'basic-distance = #20
72   last-bottom-spacing #'basic-distance = #10
73 }
74
75 global = {
76   \key c \major
77   \time 4/4
78 }
79
80 sopMusic = \relative c'' {
81   c4 c c8[( b)] c4
82 }
83 sopWords = \lyricmode {
84   hi hi hi hi
85 }
86
87 altoMusic = \relative c' {
88   e4 f d e
89 }
90 altoWords =\lyricmode {
91   ha ha ha ha
92 }
93
94 tenorMusic = \relative c' {
95   g4 a f g
96 }
97 tenorWords = \lyricmode {
98   hu hu hu hu
99 }
100
101 bassMusic = \relative c {
102   c4 c g c
103 }
104 bassWords = \lyricmode {
105   ho ho ho ho
106 }
107
108 \score {
109   <<
110     \new ChoirStaff <<
111       \new Lyrics = "sopranos" \with {
112         % This is needed for lyrics above a staff
113         \override VerticalAxisGroup #'staff-affinity = #DOWN
114       }
115       \new Staff = "women" <<
116         \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> }
117         \new Voice = "altos" { \voiceTwo << \global \altoMusic >> }
118       >>
119       \new Lyrics = "altos"
120       \new Lyrics = "tenors" \with {
121         % This is needed for lyrics above a staff
122         \override VerticalAxisGroup #'staff-affinity = #DOWN
123       }
124
125       \new Staff = "men" <<
126         \clef bass
127         \new Voice = "tenors" { \voiceOne << \global \tenorMusic >> }
128         \new Voice = "basses" { \voiceTwo << \global \bassMusic >> }
129       >>
130       \new Lyrics = "basses"
131       \context Lyrics = "sopranos" \lyricsto "sopranos" \sopWords
132       \context Lyrics = "altos" \lyricsto "altos" \altoWords
133       \context Lyrics = "tenors" \lyricsto "tenors" \tenorWords
134       \context Lyrics = "basses" \lyricsto "basses" \bassWords
135     >>
136     \new PianoStaff <<
137       \new Staff <<
138         \set Staff.printPartCombineTexts = ##f
139         \partcombine
140         << \global \sopMusic >>
141         << \global \altoMusic >>
142       >>
143       \new Staff <<
144         \clef bass
145         \set Staff.printPartCombineTexts = ##f
146         \partcombine
147         << \global \tenorMusic >>
148         << \global \bassMusic >>
149       >>
150     >>
151   >>
152 }