]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly
a4bbc993cb3cb7098d470dd9a365869c5b8f3814
[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.39"
5
6 \header {
7   lsrtags = "text, vocal-music, contexts-and-engravers, template"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
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
20 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
21   texidocja = "
22 このテンプレートは基本的に単純な \"合唱\" テンプレートと同じですが、歌詞が
23 @code{alignAboveContext} と @code{alignBelowContext} を用いて配置されています。
24 "
25
26 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
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: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
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 @qq{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 }
110