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