-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfullscore.ly
48 lines (46 loc) · 1.36 KB
/
fullscore.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
\include "header.ly"
\include "violin1.ly"
\include "violin2.ly"
\include "viola.ly"
\include "cello.ly"
\include "bass.ly"
\include "solos.ly"
\score {
\new StaffGroup
\relative <<
\new GrandStaff <<
\new Staff \with {
shortInstrumentName = \markup { \tiny { "Vln Solo " } }
} << \violinsolo >>
\new Staff \with {
shortInstrumentName = \markup { \tiny { "Vln I " } }
} << \violinone >>
\new Staff \with {
shortInstrumentName = \markup { \tiny { "Vln II " } }
} << \violintwo >>
>>
\new GrandStaff <<
\new Staff \with {
shortInstrumentName = \markup { \tiny { "Va Solo " } }
} << \violasolo >>
\new Staff \with {
shortInstrumentName = \markup { \tiny { "Va " } }
} << \viola >>
>>
\new Staff \with {
shortInstrumentName = \markup { \tiny { "Cello " } }
} << \cello >>
\new Staff \with {
shortInstrumentName = \markup { \tiny { "D-B " } }
} << \bass >>
>>
\layout {
indent = 2\cm
short-indent = 1\cm
\context { \Staff
% Hide the solo parts.
\RemoveEmptyStaves
\override VerticalAxisGroup #'remove-first = ##t
}
}
}