]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / vocal-ensemble-template.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "template, vocal-music, really-simple"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 He aquí una partitura vocal estándar para cuatro voces SATB. Con
15 grupos mayores, suele ser útil incluir una sección que aparezca en
16 todas las partes.  Por ejemplo, el compás y la armadura casi siempre
17 son los mismos para todas. Como en la plantilla @qq{Himno}, las cuatro
18 voces se reagrupan en sólo dos pentagramas.
19
20 "
21   doctitlees = "Plantilla de conjunto vocal"
22
23
24 %% Translation of GIT committish: bfc88203ac2572737480e78ef2635ed35b458441
25   texidocja = "
26 これは標準の 4 パート SATB (ソプラノ、アルト、テナー、バス) ボーカル譜です。@c
27 もっと大きな合唱では、すべてのパートで使用されるセクションをインクルードすると@c
28 便利です。例えば、拍子記号と調号はほとんど常にすべてのパートで同じです。\"賛美@c
29 歌\" テンプレートのように、4 つのボイスは 2 つの譜にグループ分けされています。"
30
31 %% Translation of GIT committish: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
32   texidocit = "
33 Ecco una tipica partitura corale a quattro parti, SATB. Se il complesso è più
34 ampio, è spesso comodo scrivere gli elementi comuni in un'unica sezione, che
35 verrà poi inclusa in tutte le parti. Ad esempio, l'indicazione di tempo e
36 l'armatura di chiave sono quasi sempre le stesse per tutte le parti. Come nel
37 modello dell'@qq{Inno}, le quattro voci sono ripartite in due soli righi.
38 "
39   doctitleit = "Modello per complesso vocale"
40
41 %% Translation of GIT committish: bfc88203ac2572737480e78ef2635ed35b458441
42   texidocde = "
43 Dieses Beispiel ist für vierstimmigen Gesang (SATB). Bei größeren
44 Stücken ist es oft sinnvoll, eine allgemeine Variable zu bestimmen,
45 die in allen Stimmen eingefügt wird. Taktart und Vorzeichen etwa
46 sind fast immer gleich in allen Stimmen.
47 "
48
49   doctitlede = "Vorlage für Vokalensemble"
50
51
52 %% Translation of GIT committish: bfc88203ac2572737480e78ef2635ed35b458441
53   texidocfr = "
54 Ce fichier constitue un canevas standard de partition pour chœur à
55 quatre voix mixtes.  Lorsque les ensembles s'étoffent, il est judicieux
56 de recourrir à une section spécifique incluse dans chacune des parties,
57 tout particulièrement pour gérer la métrique et la tonalité qui,
58 la plupart du temps, sont communes à tous les pupitres.  Comme il est
59 d'usage pour les hymnes, les quatre voix sont réparties sur deux
60 portées.
61
62 "
63   doctitlefr = "Ensemble vocal (simple)"
64
65   texidoc = "
66 Here is a standard four-part SATB vocal score. With larger ensembles,
67 it is often useful to include a section which is included in all parts.
68 For example, the time signature and key signature are almost always the
69 same for all parts. Like in the @qq{Hymn} template, the four voices are
70 regrouped on only two staves.
71
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