]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/vocal-ensemble-template.ly
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/lilypond...
[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.11.38"
4
5 \header {
6   lsrtags = "vocal-music, template"
7
8   texidoc = "
9 Here is a standard four-part SATB vocal score. With larger ensembles,
10 it's often useful to include a section which is included in all parts.
11 For example, the time signature and key signatures are almost always
12 the same for all parts. Like in the \"Hymn\" template, the four voices
13 are regrouped on only two staves.
14
15 "
16   doctitle = "Vocal ensemble template"
17 } % begin verbatim
18 global = {
19             \key c \major
20             \time 4/4
21          }
22          
23          sopMusic = \relative c'' {
24             c4 c c8[( b)] c4
25          }
26          sopWords = \lyricmode {
27             hi hi hi hi
28          }
29          
30          altoMusic = \relative c' {
31             e4 f d e
32          }
33          altoWords =\lyricmode {
34             ha ha ha ha
35          }
36          
37          tenorMusic = \relative c' {
38             g4 a f g
39          }
40          tenorWords = \lyricmode {
41             hu hu hu hu
42          }
43          
44          bassMusic = \relative c {
45             c4 c g c
46          }
47          bassWords = \lyricmode {
48             ho ho ho ho
49          }
50          
51          \score {
52             \new ChoirStaff <<
53                \new Lyrics = sopranos { s1 }
54                \new Staff = women <<
55                   \new Voice =
56                     "sopranos" { \voiceOne << \global \sopMusic >> }
57                   \new Voice =
58                     "altos" { \voiceTwo << \global \altoMusic >> }
59                >>
60                \new Lyrics = "altos" { s1 }
61                \new Lyrics = "tenors" { s1 }
62                \new Staff = men <<
63                   \clef bass
64                   \new Voice =
65                     "tenors" { \voiceOne <<\global \tenorMusic >> }
66                   \new Voice =
67                     "basses" { \voiceTwo <<\global \bassMusic >> }
68                >>
69                \new Lyrics = basses { s1 }
70          
71                \context Lyrics = sopranos \lyricsto sopranos \sopWords
72                \context Lyrics = altos \lyricsto altos \altoWords
73                \context Lyrics = tenors \lyricsto tenors \tenorWords
74                \context Lyrics = basses \lyricsto basses \bassWords
75             >>
76          
77             \layout {
78                \context {
79                   % a little smaller so lyrics
80                   % can be closer to the staff
81                   \Staff
82                   \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
83                }
84             }
85          }
86