Add point-and-click to non-default rehearsal marks.
[lilypond/mpolesky.git] / Documentation / snippets / vocal-ensemble-template-with-lyrics-aligned-below-and-above-the-staves.ly
bloba98cf4f4b5448f739c88bc7e9cc56a8d4ab17cf4
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.29"
6 \header {
7 lsrtags = "text, vocal-music, contexts-and-engravers, template"
9 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
10 texidoces = "
11 Esta plantilla es, básicamente, la misma que la sencilla plantilla
12 @qq{Conjunto vocal}, excepto que aquí todas las líneas de letra se
13 colocan utilizando @code{alignAboveContext} y
14 @code{alignBelowContext}.
17 doctitlees = "Plantilla para conjunto vocal con letras alineadas encima y debajo de los pentagramas"
19 %% Translation of GIT committish: fa1aa6efe68346f465cfdb9565ffe35083797b86
20 texidocja = "
21 このテンプレートは基本的に単純な \"合唱\" テンプレートと同じですが、歌詞が
22 @code{alignAboveContext} と @code{alignBelowContext} を用いて配置されています。
24 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
25 texidocde = "
26 In diesem Beispiel werden die Texte mit den Befehlen
27 @code{alignAboveContext} und @code{alignBelowContext}
28 über und unter dem System angeordnet.
31 doctitlede = "Vorlage für Vokalensemble mit dem Gesangstext über und unter dem System"
33 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
34 texidocfr = "
35 Ce canevas ressemble beaucoup à celui pour chœur à quatre voix mixtes.
36 La différence réside dans le fait que les paroles sont positionnées en
37 ayant recours à @code{alignAboveContext} et @code{alignBelowContext}.
40 doctitlefr = "Ensemble vocal avec alignement des paroles selon le contexte"
42 texidoc = "
43 This template is basically the same as the simple @qq{Vocal ensemble}
44 template, with the exception that here all the lyrics lines are placed
45 using @code{alignAboveContext} and @code{alignBelowContext}.
48 doctitle = "Vocal ensemble template with lyrics aligned below and above the staves"
49 } % begin verbatim
51 global = {
52 \key c \major
53 \time 4/4
56 sopMusic = \relative c'' {
57 c4 c c8[( b)] c4
59 sopWords = \lyricmode {
60 hi hi hi hi
63 altoMusic = \relative c' {
64 e4 f d e
66 altoWords = \lyricmode {
67 ha ha ha ha
70 tenorMusic = \relative c' {
71 g4 a f g
73 tenorWords = \lyricmode {
74 hu hu hu hu
77 bassMusic = \relative c {
78 c4 c g c
80 bassWords = \lyricmode {
81 ho ho ho ho
84 \score {
85 \new ChoirStaff <<
86 \new Staff = women <<
87 \new Voice = "sopranos" { \voiceOne << \global \sopMusic >> }
88 \new Voice = "altos" { \voiceTwo << \global \altoMusic >> }
90 \new Lyrics \with { alignAboveContext = women } \lyricsto sopranos \sopWords
91 \new Lyrics \with { alignBelowContext = women } \lyricsto altos \altoWords
92 % we could remove the line about this with the line below, since we want
93 % the alto lyrics to be below the alto Voice anyway.
94 % \new Lyrics \lyricsto altos \altoWords
96 \new Staff = men <<
97 \clef bass
98 \new Voice = "tenors" { \voiceOne << \global \tenorMusic >> }
99 \new Voice = "basses" { \voiceTwo << \global \bassMusic >> }
101 \new Lyrics \with { alignAboveContext = men } \lyricsto tenors \tenorWords
102 \new Lyrics \with { alignBelowContext = men } \lyricsto basses \bassWords
103 % again, we could replace the line above this with the line below.
104 % \new Lyrics \lyricsto basses \bassWords
106 \layout {
107 \context {
108 % a little smaller so lyrics
109 % can be closer to the staff
110 \Staff
111 \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)