]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / vocal-ensemble-template.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6 %% Translation of GIT committish: 892286cbfdbe89420b8181975032ea975e79d2f5
7   texidocfr = "
8 Ce fichier constitue un canevas standard de partition pour chœur à
9 quatre voix mixtes.  Lorsque les ensembles s'étoffent, il est judicieux
10 de recourrir à une section spécifique incluse dans chacune des parties,
11 tout particulièrement pour gérer la métrique et la tonalité qui,
12 la plupart du temps, sont communes à tous les pupitres.  Comme il est
13 d'usage pour les hymnes, les quatre voix sont réparties sur deux
14 portées. 
15
16 "
17   doctitlefr = "Ensemble vocal (simple)"
18
19   lsrtags = "vocal-music, template"
20
21 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
22   texidoces = "
23 He aquí una partitura vocal estándar para cuatro voces SATB. Con
24 grupos mayores, suele ser útil incluir una sección que aparezca en
25 todas las partes.  Por ejemplo, el compás y la armadura casi siempre
26 son los mismos para todas. Como en la plantilla \"Himno\", las cuatro
27 voces se reagrupan en sólo dos pentagramas.
28
29 "
30   doctitlees = "Plantilla de conjunto vocal"
31
32 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d  
33   texidocde = "
34 Dieses Beispiel ist für vierstimmigen Gesang (SATB). Bei größeren 
35 Stücken ist es oft sinnvoll, eine allgemeine Variable zu bestimmen, 
36 die in allen Stimmen eingefügt wird. Taktart und Vorzeichen etwa 
37 sind fast immer gleich in allen Stimmen.
38 "
39
40   doctitlede = "Vorlage für Vokalensemble"
41
42 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
43   texidocja = "
44 これは標準の 4 パート SATB (ソプラノ、アルト、テナー、バス) ボーカル譜です。@c
45 もっと大きな合唱では、すべてのパートで使用されるセクションをインクルードすると@c
46 便利です。例えば、拍子記号と調号はほとんど常にすべてのパートで同じです。\"賛美@c
47 歌\" テンプレートのように、4 つのボイスは 2 つの譜にグループ分けされています。"
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 \"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