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