]> 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://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / 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.1"
4
5 \header {
6 %% Translation of GIT committish: 892286cbfdbe89420b8181975032ea975e79d2f5
7   texidocfr = "
8 Ce canevas ressemble beaucoup à celui pour chœur à quatre voix mixtes.
9 La différence réside dans le fait que les paroles sont positionnées en
10 ayant recours à @code{alignAboveContext} et @code{alignBelowContext}. 
11
12 "
13   doctitlefr = "Ensemble vocal avec alignement des paroles selon le contexte"
14
15   lsrtags = "text, vocal-music, contexts-and-engravers, template"
16
17 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
18   texidoces = "
19 Esta plantilla es, básicamente, la misma que la sencilla plantilla
20 \"Conjunto vocal\", excepto que aquí todas las líneas de letra se
21 colocan utilizando @code{alignAboveContext} y
22 @code{alignBelowContext}.
23
24 "
25   doctitlees = "Plantilla para conjunto vocal con letras alineadas encima y debajo de los pentagramas"
26   
27 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
28   texidocde = "
29 In diesem Beispiel werden die Texte mit den Befehlen 
30 @code{alignAboveContext} und @code{alignBelowContext}
31 über und unter dem System angeordnet.
32 "
33
34   doctitlede = "Vorlage für Vokalensemble mit dem Gesangstext über und unter dem System"
35
36 %% Translation of GIT committish: 06d99c3c9ad1c3472277b4eafd7761c4aadb84ae
37   texidocja = "
38 このテンプレートは基本的に単純な \"合唱\" テンプレートと同じですが、歌詞が 
39 @code{alignAboveContext} と @code{alignBelowContext} を用いて配置されています。
40 "
41
42   texidoc = "
43 This template is basically the same as the simple \"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