]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly
1f7bddf321931d1c41db4d2338ef9fad39c01b82
[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.12.2"
8
9 \header {
10   lsrtags = "text, vocal-music, contexts-and-engravers, template"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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: 0a868be38a775ecb1ef935b079000cebbc64de40
30   texidocde = "
31 In diesem Beispiel werden die Texte mit den Befehlen
32 @code{alignAboveContext} und @code{alignBelowContext}
33 über und unter dem System angeordnet.
34 "
35
36   doctitlede = "Vorlage für Vokalensemble mit dem Gesangstext über und unter dem System"
37
38
39 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
40   texidocfr = "
41 Ce canevas ressemble beaucoup à celui pour chœur à quatre voix mixtes.
42 La différence réside dans le fait que les paroles sont positionnées en
43 ayant recours à @code{alignAboveContext} et @code{alignBelowContext}.
44
45 "
46   doctitlefr = "Ensemble vocal avec alignement des paroles selon le contexte"
47
48   texidoc = "
49 This template is basically the same as the simple @qq{Vocal ensemble}
50 template, with the exception that here all the lyrics lines are placed
51 using @code{alignAboveContext} and @code{alignBelowContext}.
52
53 "
54   doctitle = "Vocal ensemble template with lyrics aligned below and above the staves"
55 } % begin verbatim
56
57 global = {
58   \key c \major
59   \time 4/4
60 }
61
62 sopMusic = \relative c'' {
63   c4 c c8[( b)] c4
64 }
65 sopWords = \lyricmode {
66   hi hi hi hi
67 }
68
69 altoMusic = \relative c' {
70   e4 f d e
71 }
72 altoWords = \lyricmode {
73   ha ha ha ha
74 }
75
76 tenorMusic = \relative c' {
77   g4 a f g
78 }
79 tenorWords = \lyricmode {
80   hu hu hu hu
81 }
82
83 bassMusic = \relative c {
84   c4 c g c
85 }
86 bassWords = \lyricmode {
87   ho ho ho ho
88 }
89
90 \score {
91   \new ChoirStaff <<
92     \new Staff = "women" <<
93       \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> }
94       \new Voice = "altos" { \voiceTwo << \global \altoMusic >> }
95     >>
96     \new Lyrics \with { alignAboveContext = #"women" } \lyricsto "sopranos" \sopWords
97     \new Lyrics \with { alignBelowContext = #"women" } \lyricsto "altos" \altoWords
98     % we could remove the line about this with the line below, since we want
99     % the alto lyrics to be below the alto Voice anyway.
100     % \new Lyrics \lyricsto "altos" \altoWords
101
102     \new Staff = "men" <<
103       \clef bass
104       \new Voice = "tenors" { \voiceOne << \global \tenorMusic >> }
105       \new Voice = "basses" { \voiceTwo << \global \bassMusic >> }
106     >>
107     \new Lyrics \with { alignAboveContext = #"men" } \lyricsto "tenors" \tenorWords
108     \new Lyrics \with { alignBelowContext = #"men" } \lyricsto "basses" \bassWords
109     % again, we could replace the line above this with the line below.
110     % \new Lyrics \lyricsto "basses" \bassWords
111   >>
112 }
113