]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly
5f55cb5665193bf973d7b0320caca06ab6176025
[lilypond.git] / input / lsr / vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.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.57"
4
5 \header {
6   lsrtags = "text, vocal-music, contexts-and-engravers, template"
7
8   texidoces = "
9 Esta plantilla es, básicamente, la misma que la sencilla plantilla
10 \"Conjunto vocal\", excepto que aquí todas las líneas de letra se
11 colocan utilizando @code{alignAboveContext} y
12 @code{alignBelowContext}.
13
14 "
15   doctitlees = "Plantilla para conjunto vocal con letras alineadas encima y debajo de los pentagramas"
16
17   texidoc = "
18 This template is basically the same as the simple \"Vocal ensemble\"
19 template, with the exception that here all the lyrics lines are placed
20 using @code{alignAboveContext} and @code{alignBelowContext}.
21
22 "
23   doctitle = "Vocal ensemble template with lyrics aligned below and above the staves"
24 } % begin verbatim
25 global = {
26   \key c \major
27   \time 4/4
28 }
29
30 sopMusic = \relative c'' {
31   c4 c c8[( b)] c4
32 }
33 sopWords = \lyricmode {
34   hi hi hi hi
35 }
36
37 altoMusic = \relative c' {
38   e4 f d e
39 }
40 altoWords = \lyricmode {
41   ha ha ha ha
42 }
43
44 tenorMusic = \relative c' {
45   g4 a f g
46 }
47 tenorWords = \lyricmode {
48   hu hu hu hu
49 }
50
51 bassMusic = \relative c {
52   c4 c g c
53 }
54 bassWords = \lyricmode {
55   ho ho ho ho
56 }
57
58 \score {
59   \new ChoirStaff <<
60     \new Staff = women <<
61       \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> }
62       \new Voice = "altos" { \voiceTwo << \global \altoMusic >> }
63     >>
64     \new Lyrics \with { alignAboveContext = women } \lyricsto sopranos \sopWords
65     \new Lyrics \with { alignBelowContext = women } \lyricsto altos \altoWords
66     % we could remove the line about this with the line below, since we want
67     % the alto lyrics to be below the alto Voice anyway.
68     % \new Lyrics \lyricsto altos \altoWords
69     
70     \new Staff = men <<
71       \clef bass
72       \new Voice = "tenors" { \voiceOne << \global \tenorMusic >> }
73       \new Voice = "basses" { \voiceTwo << \global \bassMusic >> }
74     >>
75     \new Lyrics \with { alignAboveContext = men } \lyricsto tenors \tenorWords
76     \new Lyrics \with { alignBelowContext = men } \lyricsto basses \bassWords
77     % again, we could replace the line above this with the line below.
78     % \new Lyrics \lyricsto basses \bassWords
79   >>
80   \layout {
81     \context {
82       % a little smaller so lyrics
83       % can be closer to the staff
84       \Staff
85       \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
86     }
87   }
88 }