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