-
Notifications
You must be signed in to change notification settings - Fork 0
/
choir_wide.ly
206 lines (157 loc) · 4.25 KB
/
choir_wide.ly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
\version "2.18.2"
% закомментируйте строку ниже, чтобы получался pdf с навигацией
%#(ly:set-option 'point-and-click #f)
#(ly:set-option 'midi-extension "mid")
#(set-default-paper-size "a4")
%#(set-global-staff-size 18)
\header {
title = "Заголовок"
subtitle = " "
composer = "Композитор"
% Удалить строку версии LilyPond
tagline = ##f
}
abr = { \break }
%abr = {}
pbr = { \pageBreak }
%pbr = {}
breathes = { \once \override BreathingSign.text = \markup { \musicglyph #"scripts.tickmark" } \breathe }
bort = { % Динамика: вместо f, p пишем по-русски гр., т. и т.д.
\override DynamicText.stencil = #(lambda (grob)(
grob-interpret-markup grob (
let (( dyntxt (ly:grob-property grob 'text ) ) )
( set! dyntxt (cond
(( equal? dyntxt "f" ) "гр." )
(( equal? dyntxt "p" ) "т." )
)) #{ \markup \normal-text \italic $dyntxt #} )
))}
melon = { \set melismaBusyProperties = #'() }
meloff = { \unset melismaBusyProperties }
solo = ^\markup\italic"Соло"
tutti = ^\markup\italic"Все"
co = \cadenzaOn
cof = \cadenzaOff
cb = { \cadenzaOff \bar "||" }
cbr = { \bar "" }
cbar = { \cadenzaOff \bar "|" \cadenzaOn }
stemOff = { \hide Staff.Stem }
nat = { \once \hide Accidental }
%stemOn = { \unHideNotes Staff.Stem }
partiall = { \set Timing.measurePosition = #(ly:make-moment -1/4) }
global = {
\key f \major
\time 3/4
\numericTimeSignature
\autoBeamOff
\override Score.BarNumber.break-visibility = #end-of-line-invisible
\override Score.BarNumber.X-offset = #1
\override Score.BarNumber.self-alignment-X = #LEFT
\set Score.barNumberVisibility = #(every-nth-bar-number-visible 2)
}
sopvoiceup = \relative c'' {
\global
\voiceOne
}
sopvoice = \relative c'' {
\global
}
altvoice = \relative c'' {
\global
\voiceOne
}
altvoiceii = \relative c' {
\global
}
tenorvoice = \relative c' {
\global
\voiceOne
}
tenorvoiceii = \relative c' {
\global
}
bassvoice = \relative c' {
\global
\voiceOne
}
bassvoiceii = \relative c' {
\global
}
lyricsi = \lyricmode {
}
lyricsii = \lyricmode {
}
lyricsa = \lyricmode {
}
lyricst = \lyricmode {
}
lyricsb = \lyricmode {
}
\bookpart {
\paper {
top-margin = 15
left-margin = 15
right-margin = 10
bottom-margin = 15
indent = 20
ragged-bottom = ##f
ragged-last-bottom = ##f
}
\score {
\new ChoirStaff <<
\new Staff = "sopstaff" \with {
instrumentName = "Сопрано"
shortInstrumentName = "С"
midiInstrument = "voice oohs"
} <<
\new Voice = "sopranoii" { \voiceOne \sopvoiceup }
\new Voice = "soprano" { \sopvoice }
>>
\new Lyrics \with { alignAboveContext = "sopstaff" } \lyricsto "sopranoii" { \lyricsii }
\new Lyrics \lyricsto "soprano" { \lyricsi }
\new Staff = "altstaff" \with {
instrumentName = "Альт"
shortInstrumentName = "А"
midiInstrument = "voice oohs"
} <<
\new Voice = "alto" { \altvoice }
\new Voice = "alto" { \altvoiceii }
>>
\new Lyrics \lyricsto "alto" { \lyricsa }
%\new Lyrics \lyricsto "soprano" { \lyricscoretwo }
%\new Lyrics \lyricsto "soprano" { \lyricscorethree }
\new Staff = "tenorstaff" \with {
instrumentName = "Тенор"
shortInstrumentName = "Т"
midiInstrument = "voice oohs"
} <<
\new Voice = "tenor" { \clef "treble_8" \tenorvoice }
\new Voice = "tenorii" { \tenorvoiceii }
>>
\new Lyrics \lyricsto "tenor" { \lyricst }
\new Staff = "downstaff" \with {
instrumentName = "Бас"
shortInstrumentName = "Б"
midiInstrument = "voice oohs"
} <<
\new Voice = "bass" { \clef bass \bassvoice }
\new Voice = "bass" { \clef bass \bassvoiceii }
>>
\new Lyrics \lyricsto "bass" { \lyricsb }
>>
% transposeµ
\layout {
\context {
\Score
}
\context {
\Staff
% \RemoveEmptyStaves
% \override VerticalAxisGroup.remove-first = ##t
}
%Metronome_mark_engraver
}
\midi {
\tempo 4=60
}
}
}