]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/vocal-ensemble-template-with-automatic-piano-reduction.ly
ja doc
[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.12.0"
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
34   texidoc = "
35 This template adds an automatic piano reduction to the standard SATB
36 vocal score demonstrated in \"Vocal ensemble template\". This
37 demonstrates one of the strengths of LilyPond – you can use a music
38 definition more than once. If any changes are made to the vocal notes
39 (say, @code{tenorMusic}), then the changes will also apply to the piano
40 reduction.
41
42 "
43   doctitle = "Vocal ensemble template with automatic piano reduction"
44 } % begin verbatim
45
46 global = {
47   \key c \major
48   \time 4/4
49 }
50
51 sopMusic = \relative c'' {
52   c4 c c8[( b)] c4
53 }
54 sopWords = \lyricmode {
55   hi hi hi hi
56 }
57
58 altoMusic = \relative c' {
59   e4 f d e
60 }
61 altoWords =\lyricmode {
62   ha ha ha ha
63 }
64
65 tenorMusic = \relative c' {
66   g4 a f g
67 }
68 tenorWords = \lyricmode {
69   hu hu hu hu
70 }
71
72 bassMusic = \relative c {
73   c4 c g c
74 }
75 bassWords = \lyricmode {
76   ho ho ho ho
77 }
78
79 \score {
80   <<
81     \new ChoirStaff <<
82       \new Lyrics = sopranos { s1 }
83       \new Staff = women <<
84         \new Voice = sopranos { \voiceOne << \global \sopMusic >> }
85         \new Voice = altos { \voiceTwo << \global \altoMusic >> }
86       >>
87       \new Lyrics = altos { s1 }
88       \new Lyrics = tenors { s1 }
89       \new Staff = men <<
90         \clef bass
91         \new Voice = tenors { \voiceOne <<\global \tenorMusic >> }
92         \new Voice = basses { \voiceTwo <<\global \bassMusic >> }
93       >>
94       \new Lyrics = basses { s1 }
95       \context Lyrics = sopranos \lyricsto sopranos \sopWords
96       \context Lyrics = altos \lyricsto altos \altoWords
97       \context Lyrics = tenors \lyricsto tenors \tenorWords
98       \context Lyrics = basses \lyricsto basses \bassWords
99     >>
100     \new PianoStaff <<
101       \new Staff <<
102         \set Staff.printPartCombineTexts = ##f
103         \partcombine
104         << \global \sopMusic >>
105         << \global \altoMusic >>
106       >>
107       \new Staff <<
108         \clef bass
109         \set Staff.printPartCombineTexts = ##f
110         \partcombine
111         << \global \tenorMusic >>
112         << \global \bassMusic >>
113       >>
114     >>
115   >>
116   \layout {
117     \context {
118       % a little smaller so lyrics
119       % can be closer to the staff
120       \Staff
121       \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
122     }
123   }
124 }