]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template.ly
Merge branch 'master' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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   lsrtags = "vocal-music, template"
7
8 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
9   texidoces = "
10 He aquí una partitura vocal estándar para cuatro voces SATB. Con
11 grupos mayores, suele ser útil incluir una sección que aparezca en
12 todas las partes.  Por ejemplo, el compás y la armadura casi siempre
13 son los mismos para todas. Como en la plantilla \"Himno\", las cuatro
14 voces se reagrupan en sólo dos pentagramas.
15
16 "
17   doctitlees = "Plantilla de conjunto vocal"
18
19 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d  
20   texidocde = "
21 Dieses Beispiel ist für vierstimmigen Gesang (SATB). Bei größeren 
22 Stücken ist es oft sinnvoll, eine allgemeine Variable zu bestimmen, 
23 die in allen Stimmen eingefügt wird. Taktart und Vorzeichen etwa 
24 sind fast immer gleich in allen Stimmen.
25 "
26
27   doctitlede = "Vorlage für Vokalensemble"
28
29 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
30   texidocja = "
31 これは標準の 4 パート SATB (ソプラノ、アルト、テナー、バス) ボーカル譜です。@c
32 もっと大きな合唱では、すべてのパートで使用されるセクションをインクルードすると@c
33 便利です。例えば、拍子記号と調号はほとんど常にすべてのパートで同じです。\"賛美@c
34 歌\" テンプレートのように、4 つのボイスは 2 つの譜にグループ分けされています。"
35
36   texidoc = "
37 Here is a standard four-part SATB vocal score. With larger ensembles,
38 it is often useful to include a section which is included in all parts.
39 For example, the time signature and key signature are almost always the
40 same for all parts. Like in the \"Hymn\" template, the four voices are
41 regrouped on only two staves.
42
43 "
44   doctitle = "Vocal ensemble template"
45 } % begin verbatim
46
47 global = {
48   \key c \major
49   \time 4/4
50 }
51
52 sopMusic = \relative c'' {
53   c4 c c8[( b)] c4
54 }
55 sopWords = \lyricmode {
56   hi hi hi hi
57 }
58
59 altoMusic = \relative c' {
60   e4 f d e
61 }
62 altoWords = \lyricmode {
63   ha ha ha ha
64 }
65
66 tenorMusic = \relative c' {
67   g4 a f g
68 }
69 tenorWords = \lyricmode {
70   hu hu hu hu
71 }
72
73 bassMusic = \relative c {
74   c4 c g c
75 }
76 bassWords = \lyricmode {
77   ho ho ho ho
78 }
79
80 \score {
81   \new ChoirStaff <<
82     \new Lyrics = sopranos { s1 }
83     \new Staff = women <<
84       \new Voice = "sopranos" {
85         \voiceOne
86         << \global \sopMusic >>
87       }
88       \new Voice = "altos" {
89         \voiceTwo
90         << \global \altoMusic >>
91       }
92     >>
93     \new Lyrics = "altos" { s1 }
94     \new Lyrics = "tenors" { s1 }
95     \new Staff = men <<
96       \clef bass
97       \new Voice = "tenors" {
98         \voiceOne
99         << \global \tenorMusic >>
100       }
101       \new Voice = "basses" {
102         \voiceTwo << \global \bassMusic >>
103       }
104     >>
105     \new Lyrics = basses { s1 }    
106     \context Lyrics = sopranos \lyricsto sopranos \sopWords
107     \context Lyrics = altos \lyricsto altos \altoWords
108     \context Lyrics = tenors \lyricsto tenors \tenorWords
109     \context Lyrics = basses \lyricsto basses \bassWords
110   >>  
111   \layout {
112     \context {
113       % a little smaller so lyrics
114       % can be closer to the staff
115       \Staff
116       \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
117     }
118   }
119 }
120