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