]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly
Merge master into nested-bookparts
[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.62"
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   texidocde = "
18 In diesem Beispiel werden die Texte mit den Befehlen 
19 @code{alignAboveContext} und @code{alignBelowContext}
20 über und unter dem System angeordnet.
21 "
22
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}.
27
28 "
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
34 }
35
36 sopMusic = \relative c'' {
37   c4 c c8[( b)] c4
38 }
39 sopWords = \lyricmode {
40   hi hi hi hi
41 }
42
43 altoMusic = \relative c' {
44   e4 f d e
45 }
46 altoWords = \lyricmode {
47   ha ha ha ha
48 }
49
50 tenorMusic = \relative c' {
51   g4 a f g
52 }
53 tenorWords = \lyricmode {
54   hu hu hu hu
55 }
56
57 bassMusic = \relative c {
58   c4 c g c
59 }
60 bassWords = \lyricmode {
61   ho ho ho ho
62 }
63
64 \score {
65   \new ChoirStaff <<
66     \new Staff = women <<
67       \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> }
68       \new Voice = "altos" { \voiceTwo << \global \altoMusic >> }
69     >>
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
75     
76     \new Staff = men <<
77       \clef bass
78       \new Voice = "tenors" { \voiceOne << \global \tenorMusic >> }
79       \new Voice = "basses" { \voiceTwo << \global \bassMusic >> }
80     >>
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
85   >>
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)
92     }
93   }
94 }