]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly
d283142cefcaafd4de10d50e1a2129eaad628774
[lilypond.git] / Documentation / snippets / vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "text, vocal-music, contexts-and-engravers, template"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   texidoces = "
11 Esta plantilla es, básicamente, la misma que la sencilla plantilla
12 @qq{Conjunto vocal}, excepto que aquí todas las líneas de letra se
13 colocan utilizando @code{alignAboveContext} y
14 @code{alignBelowContext}.
15
16 "
17   doctitlees = "Plantilla para conjunto vocal con letras alineadas encima y debajo de los pentagramas"
18
19 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
20   texidocja = "
21 このテンプレートは基本的に単純な \"合唱\" テンプレートと同じですが、歌詞が
22 @code{alignAboveContext} と @code{alignBelowContext} を用いて配置されています。
23 "
24 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
25   texidocde = "
26 In diesem Beispiel werden die Texte mit den Befehlen
27 @code{alignAboveContext} und @code{alignBelowContext}
28 über und unter dem System angeordnet.
29 "
30
31   doctitlede = "Vorlage für Vokalensemble mit dem Gesangstext über und unter dem System"
32
33 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
34   texidocfr = "
35 Ce canevas ressemble beaucoup à celui pour chœur à quatre voix mixtes.
36 La différence réside dans le fait que les paroles sont positionnées en
37 ayant recours à @code{alignAboveContext} et @code{alignBelowContext}.
38
39 "
40   doctitlefr = "Ensemble vocal avec alignement des paroles selon le contexte"
41
42   texidoc = "
43 This template is basically the same as the simple @qq{Vocal ensemble}
44 template, with the exception that here all the lyrics lines are placed
45 using @code{alignAboveContext} and @code{alignBelowContext}.
46
47 "
48   doctitle = "Vocal ensemble template with lyrics aligned below and above the staves"
49 } % begin verbatim
50
51 global = {
52   \key c \major
53   \time 4/4
54 }
55
56 sopMusic = \relative c'' {
57   c4 c c8[( b)] c4
58 }
59 sopWords = \lyricmode {
60   hi hi hi hi
61 }
62
63 altoMusic = \relative c' {
64   e4 f d e
65 }
66 altoWords = \lyricmode {
67   ha ha ha ha
68 }
69
70 tenorMusic = \relative c' {
71   g4 a f g
72 }
73 tenorWords = \lyricmode {
74   hu hu hu hu
75 }
76
77 bassMusic = \relative c {
78   c4 c g c
79 }
80 bassWords = \lyricmode {
81   ho ho ho ho
82 }
83
84 \score {
85   \new ChoirStaff <<
86     \new Staff = women <<
87       \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> }
88       \new Voice = "altos" { \voiceTwo << \global \altoMusic >> }
89     >>
90     \new Lyrics \with { alignAboveContext = women } \lyricsto sopranos \sopWords
91     \new Lyrics \with { alignBelowContext = women } \lyricsto altos \altoWords
92     % we could remove the line about this with the line below, since we want
93     % the alto lyrics to be below the alto Voice anyway.
94     % \new Lyrics \lyricsto altos \altoWords
95
96     \new Staff = men <<
97       \clef bass
98       \new Voice = "tenors" { \voiceOne << \global \tenorMusic >> }
99       \new Voice = "basses" { \voiceTwo << \global \bassMusic >> }
100     >>
101     \new Lyrics \with { alignAboveContext = men } \lyricsto tenors \tenorWords
102     \new Lyrics \with { alignBelowContext = men } \lyricsto basses \bassWords
103     % again, we could replace the line above this with the line below.
104     % \new Lyrics \lyricsto basses \bassWords
105   >>
106   \layout {
107     \context {
108       % a little smaller so lyrics
109       % can be closer to the staff
110       \Staff
111       \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
112     }
113   }
114 }
115