-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv1_v2_alt_cel_piano.ly
300 lines (238 loc) · 5.16 KB
/
v1_v2_alt_cel_piano.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
\version "2.20.0"
% закомментируйте строку ниже, чтобы получался pdf с навигацией
%#(ly:set-option 'point-and-click #f)
#(ly:set-option 'midi-extension "mid")
#(set-default-paper-size "a4")
#(set-global-staff-size 18)
\include "articulate.ly"
\header {
title = ""
composer = " "
% Удалить строку версии LilyPond
tagline = ##f
}
breathes = { \once \override BreathingSign.text = \markup { \musicglyph #"scripts.tickmark" } \breathe }
%make visible number of every 2-nd bar
secondbar = {
\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)
}
global = {
\key g \major
\time 4/4
\set Score.markFormatter = #format-mark-box-numbers
\override MultiMeasureRest.expand-limit = #1
\secondbar
%\numericTimeSignature
}
U = { \change Staff = right }
D = { \change Staff = left }
%use this as temporary line break
abr = \tag #'BR { \break }
% uncommend next line when finished
%abr = {}
%once hide accidental (runaround for cadenza
nat = { \once \hide Accidental }
sopvoice = \relative c'' {
}
altvoice = \relative c'' {
}
tenorvoice = \relative c' {
\global
}
bassvoice = \relative c' {
}
% flute
flutenotes = \relative c'' {
\global
}
% violin one
vinotes = \relative c'' {
\global
}
%violin two
viinotes = \relative c'' {
\global
}
%alt one intro
viiinotes = \relative c' {
\global
}
%alt two intro
cellonotes = \relative c {
\global
}
pianorightup = \relative c {
\global
}
pianorightdown = \relative c {
\global
}
pianoleftup = \relative c {
\global
}
pianoleftdown = \relative c {
\global
}
fscore = \new Staff \with { instrumentName = "Fl" shortInstrumentName = "F" midiInstrument = "flute" }
{
\flutenotes
}
viscore = \new Staff \with { instrumentName = "V1" shortInstrumentName = "V1" midiInstrument = "violin" }
{
\vinotes
}
viiscore = \new Staff \with { instrumentName = "V2" shortInstrumentName = "V2" midiInstrument = "violin" }
{
\viinotes
}
viiiscore = \new Staff \with { instrumentName = "Alt" shortInstrumentName = "A" midiInstrument = "viola" }
{
\clef alto \viiinotes
}
celloscore = \new Staff \with { instrumentName = "Cello" shortInstrumentName = "C" midiInstrument = "violin" }
{
\clef bass \cellonotes
}
pianorightnotes = \relative c'' {
<< \pianorightup \pianorightdown >>
}
pianoleftnotes = \relative c' {
\global
<< \pianoleftup \pianoleftdown >>
}
pianopart = \new PianoStaff \with {
instrumentName = "Piano"
} <<
\new Staff = "right" \with {
midiInstrument = "acoustic grand"
} \pianorightnotes
\new Staff = "left" \with {
midiInstrument = "acoustic grand"
} { \clef bass \pianoleftnotes }
>>
\paper {
top-margin = 15
left-margin = 15
right-margin = 10
bottom-margin = 15
indent = 15
ragged-bottom = ##f
}
\bookpart {
\header { piece = "Instruments" }
\paper { system-separator-markup = \slashSeparator }
\score {
<<
% \fscore
\new StaffGroup <<
\viscore
\viiscore
\viiiscore
\celloscore
>>
% \choirpart
\pianopart
>>
\layout {
% #(layout-set-staff-size 14)
\context {
\Score
}
\context {
\Staff
\accidentalStyle modern-voice-cautionary
\RemoveEmptyStaves
\override VerticalAxisGroup.remove-first = ##t
}
}
}
}
\bookpart {
\header { piece = "Violini" }
\paper { system-separator-markup = \slashSeparator }
\score {
<< \viscore \viiscore >>
\layout {
\context {
\Score
}
\context {
\Staff
\accidentalStyle modern-voice-cautionary
% \RemoveEmptyStaves
% \override VerticalAxisGroup.remove-first = ##t
}
}
}
}
\bookpart {
\header { piece = "Alto" }
\score {
<< \viiiscore >>
\layout {
\context {
\Score
}
\context {
\Staff
\accidentalStyle modern-voice-cautionary
% \RemoveEmptyStaves
% \override VerticalAxisGroup.remove-first = ##t
}
}
}
}
\bookpart {
\header { piece = "Cello" }
\score {
<< \celloscore >>
\layout {
\context {
\Score
}
\context {
\Staff
\accidentalStyle modern-voice-cautionary
% \RemoveEmptyStaves
% \override VerticalAxisGroup.remove-first = ##t
}
}
}
}
\bookpart {
\header { piece = "Piano" }
\paper { system-separator-markup = \slashSeparator page-count = #2 }
\score {
<< \pianopart >>
\layout {
\context {
\Score
}
\context {
\Staff
\accidentalStyle modern-voice-cautionary
% \RemoveEmptyStaves
% \override VerticalAxisGroup.remove-first = ##t
}
}
}
}
\bookpart {
\score {
\unfoldRepeats \articulate <<
% \fscore
\viscore
\viiscore
\viiiscore
\celloscore
% \choirpart
\pianopart
>>
\midi {
\tempo 4=90
}
}
}