]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly
38111e089fb0cd11603db50683f313db1941eb4c
[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.2"
8
9 \header {
10   lsrtags = "template, vocal-music, text, contexts-and-engravers"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
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
67 global = {
68   \key c \major
69   \time 4/4
70 }
71
72 sopMusic = \relative c'' {
73   c4 c c8[( b)] c4
74 }
75 sopWords = \lyricmode {
76   hi hi hi hi
77 }
78
79 altoMusic = \relative c' {
80   e4 f d e
81 }
82 altoWords = \lyricmode {
83   ha ha ha ha
84 }
85
86 tenorMusic = \relative c' {
87   g4 a f g
88 }
89 tenorWords = \lyricmode {
90   hu hu hu hu
91 }
92
93 bassMusic = \relative c {
94   c4 c g c
95 }
96 bassWords = \lyricmode {
97   ho ho ho ho
98 }
99
100 \score {
101   \new ChoirStaff <<
102     \new Staff = "women" <<
103       \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> }
104       \new Voice = "altos" { \voiceTwo << \global \altoMusic >> }
105     >>
106     \new Lyrics \with { alignAboveContext = #"women" }
107       \lyricsto "sopranos" \sopWords
108     \new Lyrics \with { alignBelowContext = #"women" }
109       \lyricsto "altos" \altoWords
110     % we could remove the line about this with the line below, since
111     % we want 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" }
120       \lyricsto "tenors" \tenorWords
121     \new Lyrics \with { alignBelowContext = #"men" }
122       \lyricsto "basses" \bassWords
123     % again, we could replace the line above this with the line below.
124     % \new Lyrics \lyricsto "basses" \bassWords
125   >>
126 }
127