]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template.ly
Doc -- Fix issues 1483 and 1486
[lilypond.git] / Documentation / snippets / vocal-ensemble-template.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.47
5 \version "2.13.47"
6
7 \header {
8 %% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec
9   texidoces = "
10 He aquí una partitura vocal estándar para cuatro voces SATB. Con
11 grupos mayores, suele ser útil incluir una sección que aparezca en
12 todas las partes.  Por ejemplo, el compás y la armadura casi siempre
13 son los mismos para todas. Como en la plantilla @qq{Himno}, las cuatro
14 voces se reagrupan en sólo dos pentagramas.
15
16 "
17   doctitlees = "Plantilla de conjunto vocal"
18
19
20 %% Translation of GIT committish: bfc88203ac2572737480e78ef2635ed35b458441
21   texidocja = "
22 これは標準の 4 パート SATB (ソプラノ、アルト、テナー、バス) ボーカル譜です。@c
23 もっと大きな合唱では、すべてのパートで使用されるセクションをインクルードすると@c
24 便利です。例えば、拍子記号と調号はほとんど常にすべてのパートで同じです。\"賛美@c
25 歌\" テンプレートのように、4 つのボイスは 2 つの譜にグループ分けされています。"
26
27 %% Translation of GIT committish: bfc88203ac2572737480e78ef2635ed35b458441
28   texidocde = "
29 Dieses Beispiel ist für vierstimmigen Gesang (SATB). Bei größeren
30 Stücken ist es oft sinnvoll, eine allgemeine Variable zu bestimmen,
31 die in allen Stimmen eingefügt wird. Taktart und Vorzeichen etwa
32 sind fast immer gleich in allen Stimmen.
33 "
34
35   doctitlede = "Vorlage für Vokalensemble"
36
37
38 %% Translation of GIT committish: bfc88203ac2572737480e78ef2635ed35b458441
39   texidocfr = "
40 Ce fichier constitue un canevas standard de partition pour chœur à
41 quatre voix mixtes.  Lorsque les ensembles s'étoffent, il est judicieux
42 de recourrir à une section spécifique incluse dans chacune des parties,
43 tout particulièrement pour gérer la métrique et la tonalité qui,
44 la plupart du temps, sont communes à tous les pupitres.  Comme il est
45 d'usage pour les hymnes, les quatre voix sont réparties sur deux
46 portées.
47
48 "
49   doctitlefr = "Ensemble vocal (simple)"
50
51   lsrtags = "vocal-music, template"
52
53   texidoc = "
54 Here is a standard four-part SATB vocal score. With larger ensembles,
55 it is often useful to include a section which is included in all parts.
56 For example, the time signature and key signature are almost always the
57 same for all parts. Like in the @qq{Hymn} template, the four voices are
58 regrouped on only two staves.
59 "
60   doctitle = "Vocal ensemble template"
61 } % begin verbatim
62
63
64 \paper {
65   top-system-spacing #'basic-distance = #10
66   score-system-spacing #'basic-distance = #20
67   system-system-spacing #'basic-distance = #20
68   last-bottom-spacing #'basic-distance = #10
69 }
70
71 global = {
72   \key c \major
73   \time 4/4
74 }
75
76 sopMusic = \relative c'' {
77   c4 c c8[( b)] c4
78 }
79 sopWords = \lyricmode {
80   hi hi hi hi
81 }
82
83 altoMusic = \relative c' {
84   e4 f d e
85 }
86 altoWords = \lyricmode {
87   ha ha ha ha
88 }
89
90 tenorMusic = \relative c' {
91   g4 a f g
92 }
93 tenorWords = \lyricmode {
94   hu hu hu hu
95 }
96
97 bassMusic = \relative c {
98   c4 c g c
99 }
100 bassWords = \lyricmode {
101   ho ho ho ho
102 }
103
104 \score {
105   \new ChoirStaff <<
106     \new Lyrics = "sopranos" \with {
107       % this is needed for lyrics above a staff
108       \override VerticalAxisGroup #'staff-affinity = #DOWN
109     }
110     \new Staff = "women" <<
111       \new Voice = "sopranos" {
112         \voiceOne
113         << \global \sopMusic >>
114       }
115       \new Voice = "altos" {
116         \voiceTwo
117         << \global \altoMusic >>
118       }
119     >>
120     \new Lyrics = "altos"
121     \new Lyrics = "tenors" \with {
122       % this is needed for lyrics above a staff
123       \override VerticalAxisGroup #'staff-affinity = #DOWN
124     }
125     \new Staff = "men" <<
126       \clef bass
127       \new Voice = "tenors" {
128         \voiceOne
129         << \global \tenorMusic >>
130       }
131       \new Voice = "basses" {
132         \voiceTwo << \global \bassMusic >>
133       }
134     >>
135     \new Lyrics = "basses"
136     \context Lyrics = "sopranos" \lyricsto "sopranos" \sopWords
137     \context Lyrics = "altos" \lyricsto "altos" \altoWords
138     \context Lyrics = "tenors" \lyricsto "tenors" \tenorWords
139     \context Lyrics = "basses" \lyricsto "basses" \bassWords
140   >>
141 }
142