LEFT | RIGHT |
(no file at all) | |
1 %% DO NOT EDIT this file manually; it is automatically | 1 %% DO NOT EDIT this file manually; it is automatically |
2 %% generated from LSR http://lsr.di.unimi.it | 2 %% generated from LSR http://lsr.di.unimi.it |
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ , | 3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ , |
4 %% and then run scripts/auxiliar/makelsr.py | 4 %% and then run scripts/auxiliar/makelsr.py |
5 %% | 5 %% |
6 %% This file is in the public domain. | 6 %% This file is in the public domain. |
7 \version "2.18.0" | 7 \version "2.21.0" |
8 | 8 |
9 \header { | 9 \header { |
10 lsrtags = "automatic-notation, keyboards, template, vocal-music" | 10 lsrtags = "automatic-notation, keyboards, template, vocal-music" |
11 | 11 |
12 texidoc = " | 12 texidoc = " |
13 This template adds an automatic piano reduction to the standard SATB | 13 This template adds an automatic piano reduction to the standard SATB |
14 vocal score demonstrated in @qq{Vocal ensemble template}. This | 14 vocal score demonstrated in @qq{Vocal ensemble template}. This |
15 demonstrates one of the strengths of LilyPond – you can use a music | 15 demonstrates one of the strengths of LilyPond – you can use a music |
16 definition more than once. If any changes are made to the vocal notes | 16 definition more than once. If any changes are made to the vocal notes |
17 (say, @code{tenorMusic}), then the changes will also apply to the piano | 17 (say, @code{tenorMusic}), then the changes will also apply to the piano |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 >> | 85 >> |
86 \new Lyrics = "basses" | 86 \new Lyrics = "basses" |
87 \context Lyrics = "sopranos" \lyricsto "sopranos" \sopWords | 87 \context Lyrics = "sopranos" \lyricsto "sopranos" \sopWords |
88 \context Lyrics = "altos" \lyricsto "altos" \altoWords | 88 \context Lyrics = "altos" \lyricsto "altos" \altoWords |
89 \context Lyrics = "tenors" \lyricsto "tenors" \tenorWords | 89 \context Lyrics = "tenors" \lyricsto "tenors" \tenorWords |
90 \context Lyrics = "basses" \lyricsto "basses" \bassWords | 90 \context Lyrics = "basses" \lyricsto "basses" \bassWords |
91 >> | 91 >> |
92 \new PianoStaff << | 92 \new PianoStaff << |
93 \new Staff << | 93 \new Staff << |
94 \set Staff.printPartCombineTexts = ##f | 94 \set Staff.printPartCombineTexts = ##f |
95 \partcombine | 95 \partCombine |
96 << \global \sopMusic >> | 96 << \global \sopMusic >> |
97 << \global \altoMusic >> | 97 << \global \altoMusic >> |
98 >> | 98 >> |
99 \new Staff << | 99 \new Staff << |
100 \clef bass | 100 \clef bass |
101 \set Staff.printPartCombineTexts = ##f | 101 \set Staff.printPartCombineTexts = ##f |
102 \partcombine | 102 \partCombine |
103 << \global \tenorMusic >> | 103 << \global \tenorMusic >> |
104 << \global \bassMusic >> | 104 << \global \bassMusic >> |
105 >> | 105 >> |
106 >> | 106 >> |
107 >> | 107 >> |
108 } | 108 } |
LEFT | RIGHT |