Revised autobeam settings patch and ran makelsr.py
[lilypond/mpolesky.git] / Documentation / snippets / vocal-ensemble-template-with-verse-and-refrain.ly
blob63e69207d1c5d6511dfa228f9d9c2c679917073a
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.21
5 \version "2.13.29"
7 \header {
8 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
10 texidoces = "
11 Esta plantilla crea una partitura que comienza con una estrofa para
12 solista y continúa con un estribillo a dos voces. también muestra el
13 uso de silencios de separación dentro de la variable @code{\global}
14 para definir cambios de compás (y otros elementos que son comunes a
15 todas las partes) a lo largo de toda la partitura.
19 doctitlees = "Estrofa para solista y estribillo a dos voces"
21 lsrtags = "vocal-music, contexts-and-engravers, template"
22 texidoc = "
23 This template creates a score which starts with a solo verse and
24 continues into a refrain for two voices. It also demonstrates the
25 use of spacer rests within the @code{\global} variable to define
26 meter changes (and other elements common to all parts) throughout
27 the entire score.
29 doctitle = "Vocal ensemble template with verse and refrain"
30 } % begin verbatim
33 global = {
34 \key g \major
36 % verse
37 \time 3/4
38 s2.*2
39 \break
41 % refrain
42 \time 2/4
43 s2*2
44 \bar "|."
47 SoloNotes = \relative g' {
48 \clef "treble"
50 % verse
51 g4 g g |
52 b4 b b |
54 % refrain
55 R2*2 |
58 SoloLyrics = \lyricmode {
59 One two three |
60 four five six |
63 SopranoNotes = \relative c'' {
64 \clef "treble"
66 % verse
67 R2.*2 |
69 % refrain
70 c4 c |
71 g4 g |
74 SopranoLyrics = \lyricmode {
75 la la |
76 la la |
79 BassNotes = \relative c {
80 \clef "bass"
82 % verse
83 R2.*2 |
85 % refrain
86 c4 e |
87 d4 d |
90 BassLyrics = \lyricmode {
91 dum dum |
92 dum dum |
95 \score {
97 \new Voice = "SoloVoice" << \global \SoloNotes >>
98 \new Lyrics \lyricsto "SoloVoice" \SoloLyrics
100 \new ChoirStaff <<
101 \new Voice = "SopranoVoice" << \global \SopranoNotes >>
102 \new Lyrics \lyricsto "SopranoVoice" \SopranoLyrics
104 \new Voice = "BassVoice" << \global \BassNotes >>
105 \new Lyrics \lyricsto "BassVoice" \BassLyrics
108 \layout {
109 ragged-right = ##t
110 \context { \Staff
111 % these lines prevent empty staves from being printed
112 \RemoveEmptyStaves
113 \override VerticalAxisGroup #'remove-first = ##t