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