]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/vocal-ensemble-template.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[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 %% Translation of GIT committish: d35687993883eb31442009fc50d5ae063108bfa7
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 %% Translation of GIT committish: 17633f6b8681af86230aa84597fe7561e98c91d6
19   
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 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
28   texidocja = "
29 これは標準の 4 パート SATB (ソプラノ、アルト、テナー、バス) ボーカル譜です。@c
30 もっと大きな合唱では、すべてのパートで使用されるセクションをインクルードすると@c
31 便利です。例えば、拍子記号と調号はほとんど常にすべてのパートで同じです。\"賛美@c
32 歌\" テンプレートのように、4 つのボイスは 2 つの譜にグループ分けされています。"
33
34   texidoc = "
35 Here is a standard four-part SATB vocal score. With larger ensembles,
36 it is often useful to include a section which is included in all parts.
37 For example, the time signature and key signature are almost always the
38 same for all parts. Like in the \"Hymn\" template, the four voices are
39 regrouped on only two staves.
40
41 "
42   doctitle = "Vocal ensemble template"
43 } % begin verbatim
44
45 global = {
46   \key c \major
47   \time 4/4
48 }
49
50 sopMusic = \relative c'' {
51   c4 c c8[( b)] c4
52 }
53 sopWords = \lyricmode {
54   hi hi hi hi
55 }
56
57 altoMusic = \relative c' {
58   e4 f d e
59 }
60 altoWords = \lyricmode {
61   ha ha ha ha
62 }
63
64 tenorMusic = \relative c' {
65   g4 a f g
66 }
67 tenorWords = \lyricmode {
68   hu hu hu hu
69 }
70
71 bassMusic = \relative c {
72   c4 c g c
73 }
74 bassWords = \lyricmode {
75   ho ho ho ho
76 }
77
78 \score {
79   \new ChoirStaff <<
80     \new Lyrics = sopranos { s1 }
81     \new Staff = women <<
82       \new Voice = "sopranos" {
83         \voiceOne
84         << \global \sopMusic >>
85       }
86       \new Voice = "altos" {
87         \voiceTwo
88         << \global \altoMusic >>
89       }
90     >>
91     \new Lyrics = "altos" { s1 }
92     \new Lyrics = "tenors" { s1 }
93     \new Staff = men <<
94       \clef bass
95       \new Voice = "tenors" {
96         \voiceOne
97         << \global \tenorMusic >>
98       }
99       \new Voice = "basses" {
100         \voiceTwo << \global \bassMusic >>
101       }
102     >>
103     \new Lyrics = basses { s1 }    
104     \context Lyrics = sopranos \lyricsto sopranos \sopWords
105     \context Lyrics = altos \lyricsto altos \altoWords
106     \context Lyrics = tenors \lyricsto tenors \tenorWords
107     \context Lyrics = basses \lyricsto basses \bassWords
108   >>  
109   \layout {
110     \context {
111       % a little smaller so lyrics
112       % can be closer to the staff
113       \Staff
114       \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
115     }
116   }
117 }
118