]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly
Merge commit 'origin/dev/jneeman' into systems-per-page
[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.13.0"
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   texidocja = "
24 このテンプレートは基本的に単純な \"合唱\" テンプレートと同じですが、歌詞が 
25 @code{alignAboveContext} と @code{alignBelowContext} を用いて配置されています。
26 "
27
28   texidoc = "
29 This template is basically the same as the simple \"Vocal ensemble\"
30 template, with the exception that here all the lyrics lines are placed
31 using @code{alignAboveContext} and @code{alignBelowContext}.
32
33 "
34   doctitle = "Vocal ensemble template with lyrics aligned below and above the staves"
35 } % begin verbatim
36
37 global = {
38   \key c \major
39   \time 4/4
40 }
41
42 sopMusic = \relative c'' {
43   c4 c c8[( b)] c4
44 }
45 sopWords = \lyricmode {
46   hi hi hi hi
47 }
48
49 altoMusic = \relative c' {
50   e4 f d e
51 }
52 altoWords = \lyricmode {
53   ha ha ha ha
54 }
55
56 tenorMusic = \relative c' {
57   g4 a f g
58 }
59 tenorWords = \lyricmode {
60   hu hu hu hu
61 }
62
63 bassMusic = \relative c {
64   c4 c g c
65 }
66 bassWords = \lyricmode {
67   ho ho ho ho
68 }
69
70 \score {
71   \new ChoirStaff <<
72     \new Staff = women <<
73       \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> }
74       \new Voice = "altos" { \voiceTwo << \global \altoMusic >> }
75     >>
76     \new Lyrics \with { alignAboveContext = women } \lyricsto sopranos \sopWords
77     \new Lyrics \with { alignBelowContext = women } \lyricsto altos \altoWords
78     % we could remove the line about this with the line below, since we want
79     % the alto lyrics to be below the alto Voice anyway.
80     % \new Lyrics \lyricsto altos \altoWords
81     
82     \new Staff = men <<
83       \clef bass
84       \new Voice = "tenors" { \voiceOne << \global \tenorMusic >> }
85       \new Voice = "basses" { \voiceTwo << \global \bassMusic >> }
86     >>
87     \new Lyrics \with { alignAboveContext = men } \lyricsto tenors \tenorWords
88     \new Lyrics \with { alignBelowContext = men } \lyricsto basses \bassWords
89     % again, we could replace the line above this with the line below.
90     % \new Lyrics \lyricsto basses \bassWords
91   >>
92   \layout {
93     \context {
94       % a little smaller so lyrics
95       % can be closer to the staff
96       \Staff
97       \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
98     }
99   }
100 }