]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template.ly
Merge branch 'master' into lilypond/translation
[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.14.0
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 615cbf212fdaf0b220b3330da417d0c3602494f2
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: 4077120c18ac1dc490501b3d7d5886bc93e61a42
31   texidocit = "
32 Ecco una tipica partitura vocale SATB per quattro parti. Se il gruppo è più grande,
33 è spesso utile inserire una sezione che venga poi inclusa in tutte le parti.
34 Ad esempio, l'indicazione di tempo e l'armatura di chiave sono quasi sempre
35 le stesse per tutte le parti. Come nel modello dell'@qq{Inno}, le quattro voci
36 sono raggruppate in due righi soltanto.
37 "
38   doctitleit = "Modello per gruppo vocale"
39
40 %% Translation of GIT committish: bfc88203ac2572737480e78ef2635ed35b458441
41   texidocde = "
42 Dieses Beispiel ist für vierstimmigen Gesang (SATB). Bei größeren
43 Stücken ist es oft sinnvoll, eine allgemeine Variable zu bestimmen,
44 die in allen Stimmen eingefügt wird. Taktart und Vorzeichen etwa
45 sind fast immer gleich in allen Stimmen.
46 "
47
48   doctitlede = "Vorlage für Vokalensemble"
49
50
51 %% Translation of GIT committish: bfc88203ac2572737480e78ef2635ed35b458441
52   texidocfr = "
53 Ce fichier constitue un canevas standard de partition pour chœur à
54 quatre voix mixtes.  Lorsque les ensembles s'étoffent, il est judicieux
55 de recourrir à une section spécifique incluse dans chacune des parties,
56 tout particulièrement pour gérer la métrique et la tonalité qui,
57 la plupart du temps, sont communes à tous les pupitres.  Comme il est
58 d'usage pour les hymnes, les quatre voix sont réparties sur deux
59 portées.
60
61 "
62   doctitlefr = "Ensemble vocal (simple)"
63
64   lsrtags = "vocal-music, template"
65
66   texidoc = "
67 Here is a standard four-part SATB vocal score. With larger ensembles,
68 it is often useful to include a section which is included in all parts.
69 For example, the time signature and key signature are almost always the
70 same for all parts. Like in the @qq{Hymn} template, the four voices are
71 regrouped on only two staves.
72 "
73   doctitle = "Vocal ensemble template"
74 } % begin verbatim
75
76
77 \paper {
78   top-system-spacing #'basic-distance = #10
79   score-system-spacing #'basic-distance = #20
80   system-system-spacing #'basic-distance = #20
81   last-bottom-spacing #'basic-distance = #10
82 }
83
84 global = {
85   \key c \major
86   \time 4/4
87 }
88
89 sopMusic = \relative c'' {
90   c4 c c8[( b)] c4
91 }
92 sopWords = \lyricmode {
93   hi hi hi hi
94 }
95
96 altoMusic = \relative c' {
97   e4 f d e
98 }
99 altoWords = \lyricmode {
100   ha ha ha ha
101 }
102
103 tenorMusic = \relative c' {
104   g4 a f g
105 }
106 tenorWords = \lyricmode {
107   hu hu hu hu
108 }
109
110 bassMusic = \relative c {
111   c4 c g c
112 }
113 bassWords = \lyricmode {
114   ho ho ho ho
115 }
116
117 \score {
118   \new ChoirStaff <<
119     \new Lyrics = "sopranos" \with {
120       % this is needed for lyrics above a staff
121       \override VerticalAxisGroup #'staff-affinity = #DOWN
122     }
123     \new Staff = "women" <<
124       \new Voice = "sopranos" {
125         \voiceOne
126         << \global \sopMusic >>
127       }
128       \new Voice = "altos" {
129         \voiceTwo
130         << \global \altoMusic >>
131       }
132     >>
133     \new Lyrics = "altos"
134     \new Lyrics = "tenors" \with {
135       % this is needed for lyrics above a staff
136       \override VerticalAxisGroup #'staff-affinity = #DOWN
137     }
138     \new Staff = "men" <<
139       \clef bass
140       \new Voice = "tenors" {
141         \voiceOne
142         << \global \tenorMusic >>
143       }
144       \new Voice = "basses" {
145         \voiceTwo << \global \bassMusic >>
146       }
147     >>
148     \new Lyrics = "basses"
149     \context Lyrics = "sopranos" \lyricsto "sopranos" \sopWords
150     \context Lyrics = "altos" \lyricsto "altos" \altoWords
151     \context Lyrics = "tenors" \lyricsto "tenors" \tenorWords
152     \context Lyrics = "basses" \lyricsto "basses" \bassWords
153   >>
154 }
155