LSR: Update.
[lilypond.git] / input / lsr / vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly
blobfd3085f5c7b1d99a7c181cf5149fad2a6e1abc9a
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.55"
5 \header {
6 lsrtags = "text, vocal-music, contexts-and-engravers, template"
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}.
15 doctitlees = "Plantilla para conjunto vocal con letras alineadas encima y debajo de los pentagramas"
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}.
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
30 sopMusic = \relative c'' {
31 c4 c c8[( b)] c4
33 sopWords = \lyricmode {
34 hi hi hi hi
37 altoMusic = \relative c' {
38 e4 f d e
40 altoWords = \lyricmode {
41 ha ha ha ha
44 tenorMusic = \relative c' {
45 g4 a f g
47 tenorWords = \lyricmode {
48 hu hu hu hu
51 bassMusic = \relative c {
52 c4 c g c
54 bassWords = \lyricmode {
55 ho ho ho ho
58 \score {
59 \new ChoirStaff <<
60 \new Staff = women <<
61 \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> }
62 \new Voice = "altos" { \voiceTwo << \global \altoMusic >> }
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
70 \new Staff = men <<
71 \clef bass
72 \new Voice = "tenors" { \voiceOne << \global \tenorMusic >> }
73 \new Voice = "basses" { \voiceTwo << \global \bassMusic >> }
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
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)