LSR: Update.
[lilypond.git] / input / lsr / vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly
blob5c5e34a88d3cfc28154970e44c800face2442037
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.62"
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 texidocde = "
18 In diesem Beispiel werden die Texte mit den Befehlen
19 @code{alignAboveContext} und @code{alignBelowContext}
20 über und unter dem System angeordnet.
23 texidoc = "
24 This template is basically the same as the simple \"Vocal ensemble\"
25 template, with the exception that here all the lyrics lines are placed
26 using @code{alignAboveContext} and @code{alignBelowContext}.
29 doctitle = "Vocal ensemble template with lyrics aligned below and above the staves"
30 } % begin verbatim
31 global = {
32 \key c \major
33 \time 4/4
36 sopMusic = \relative c'' {
37 c4 c c8[( b)] c4
39 sopWords = \lyricmode {
40 hi hi hi hi
43 altoMusic = \relative c' {
44 e4 f d e
46 altoWords = \lyricmode {
47 ha ha ha ha
50 tenorMusic = \relative c' {
51 g4 a f g
53 tenorWords = \lyricmode {
54 hu hu hu hu
57 bassMusic = \relative c {
58 c4 c g c
60 bassWords = \lyricmode {
61 ho ho ho ho
64 \score {
65 \new ChoirStaff <<
66 \new Staff = women <<
67 \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> }
68 \new Voice = "altos" { \voiceTwo << \global \altoMusic >> }
70 \new Lyrics \with { alignAboveContext = women } \lyricsto sopranos \sopWords
71 \new Lyrics \with { alignBelowContext = women } \lyricsto altos \altoWords
72 % we could remove the line about this with the line below, since we want
73 % the alto lyrics to be below the alto Voice anyway.
74 % \new Lyrics \lyricsto altos \altoWords
76 \new Staff = men <<
77 \clef bass
78 \new Voice = "tenors" { \voiceOne << \global \tenorMusic >> }
79 \new Voice = "basses" { \voiceTwo << \global \bassMusic >> }
81 \new Lyrics \with { alignAboveContext = men } \lyricsto tenors \tenorWords
82 \new Lyrics \with { alignBelowContext = men } \lyricsto basses \bassWords
83 % again, we could replace the line above this with the line below.
84 % \new Lyrics \lyricsto basses \bassWords
86 \layout {
87 \context {
88 % a little smaller so lyrics
89 % can be closer to the staff
90 \Staff
91 \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)