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