LSR: Update.
[lilypond/mpolesky.git] / Documentation / snippets / vocal-ensemble-template-with-automatic-piano-reduction.ly
bloba2099ba6f06324c779054d35a7d54b8424fc9645
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.29"
6 \header {
7 lsrtags = "vocal-music, keyboards, template"
9 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
10 texidoces = "
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.
20 doctitlees = "Plantilla de conjunto vocal con reducción de piano automática"
22 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
23 texidocja = "
24 このテンプレートは、\"合唱テンプレート\"で示された標準の SATB ボーカル譜に自動@c
25 ピアノ譜を付け加えています。これは LilyPond の強みの 1 つを示しています - 音楽@c
26 定義を何回も使用することができます。ボーカルの音符 (例えば、@code{tenorMusic}
27 の音符) に変更が加えられた場合、その変更はピアノ譜にも適用されます。
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.
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.
47 doctitlefr = "Ensemble vocal avec réduction pour piano"
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.
58 doctitle = "Vocal ensemble template with automatic piano reduction"
59 } % begin verbatim
61 global = {
62 \key c \major
63 \time 4/4
66 sopMusic = \relative c'' {
67 c4 c c8[( b)] c4
69 sopWords = \lyricmode {
70 hi hi hi hi
73 altoMusic = \relative c' {
74 e4 f d e
76 altoWords =\lyricmode {
77 ha ha ha ha
80 tenorMusic = \relative c' {
81 g4 a f g
83 tenorWords = \lyricmode {
84 hu hu hu hu
87 bassMusic = \relative c {
88 c4 c g c
90 bassWords = \lyricmode {
91 ho ho ho ho
94 \score {
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 >> }
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 >> }
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
115 \new PianoStaff <<
116 \new Staff <<
117 \set Staff.printPartCombineTexts = ##f
118 \partcombine
119 << \global \sopMusic >>
120 << \global \altoMusic >>
122 \new Staff <<
123 \clef bass
124 \set Staff.printPartCombineTexts = ##f
125 \partcombine
126 << \global \tenorMusic >>
127 << \global \bassMusic >>
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)