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