]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/vocal-ensemble-template.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / vocal-ensemble-template.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, template"
7
8   texidoces = "
9 He aquí una partitura vocal estándar para cuatro voces SATB. Con
10 grupos mayores, suele ser útil incluir una sección que aparezca en
11 todas las partes.  Por ejemplo, el compás y la armadura casi siempre
12 son los mismos para todas. Como en la plantilla \"Himno\", las cuatro
13 voces se reagrupan en sólo dos pentagramas.
14
15 "
16   doctitlees = "Plantilla de conjunto vocal"
17   
18   texidocde = "
19 Dieses Beispiel ist für vierstimmigen Gesang (SATB). Bei größeren 
20 Stücken ist es oft sinnvoll, eine allgemeine Variable zu bestimmen, 
21 die in allen Stimmen eingefügt wird. Taktart und Vorzeichen etwa 
22 sind fast immer gleich in allen Stimmen.
23 "
24
25   texidoc = "
26 Here is a standard four-part SATB vocal score. With larger ensembles,
27 it is often useful to include a section which is included in all parts.
28 For example, the time signature and key signature are almost always the
29 same for all parts. Like in the \"Hymn\" template, the four voices are
30 regrouped on only two staves.
31
32 "
33   doctitle = "Vocal ensemble template"
34 } % begin verbatim
35 global = {
36   \key c \major
37   \time 4/4
38 }
39
40 sopMusic = \relative c'' {
41   c4 c c8[( b)] c4
42 }
43 sopWords = \lyricmode {
44   hi hi hi hi
45 }
46
47 altoMusic = \relative c' {
48   e4 f d e
49 }
50 altoWords = \lyricmode {
51   ha ha ha ha
52 }
53
54 tenorMusic = \relative c' {
55   g4 a f g
56 }
57 tenorWords = \lyricmode {
58   hu hu hu hu
59 }
60
61 bassMusic = \relative c {
62   c4 c g c
63 }
64 bassWords = \lyricmode {
65   ho ho ho ho
66 }
67
68 \score {
69   \new ChoirStaff <<
70     \new Lyrics = sopranos { s1 }
71     \new Staff = women <<
72       \new Voice = "sopranos" {
73         \voiceOne
74         << \global \sopMusic >>
75       }
76       \new Voice = "altos" {
77         \voiceTwo
78         << \global \altoMusic >>
79       }
80     >>
81     \new Lyrics = "altos" { s1 }
82     \new Lyrics = "tenors" { s1 }
83     \new Staff = men <<
84       \clef bass
85       \new Voice = "tenors" {
86         \voiceOne
87         << \global \tenorMusic >>
88       }
89       \new Voice = "basses" {
90         \voiceTwo << \global \bassMusic >>
91       }
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   \layout {
100     \context {
101       % a little smaller so lyrics
102       % can be closer to the staff
103       \Staff
104       \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
105     }
106   }
107 }