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