]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "vocal-music, template"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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: bfc88203ac2572737480e78ef2635ed35b458441
22   texidocja = "
23 これは標準の 4 パート SATB (ソプラノ、アルト、テナー、バス) ボーカル譜です。@c
24 もっと大きな合唱では、すべてのパートで使用されるセクションをインクルードすると@c
25 便利です。例えば、拍子記号と調号はほとんど常にすべてのパートで同じです。\"賛美@c
26 歌\" テンプレートのように、4 つのボイスは 2 つの譜にグループ分けされています。"
27
28 %% Translation of GIT committish: bfc88203ac2572737480e78ef2635ed35b458441
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: bfc88203ac2572737480e78ef2635ed35b458441
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"
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"
110     \new Lyrics = "tenors"
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"
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 }
128