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