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