-
Notifications
You must be signed in to change notification settings - Fork 1
/
conductor.template
38 lines (35 loc) · 963 Bytes
/
conductor.template
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
#(set-default-paper-size "a4" 'landscape)
\version "2.14.2"
\include "score.ly"
%%%%%%%%% It All Goes Together Here %%%%%%%%%%%%%%%%%%%%%%
\score {
<<
\new StaffGroup <<
\new Staff = "sop" \sop
\new Staff = "cornetone" \cornetone
\new Staff = "cornettwo" \cornettwo
\new Staff = "flugelhorn" \flugelhorn
>>
\new StaffGroup <<
\new Staff = "tenorhorn" \tenorhorn
\new Staff = "baritone" \baritone
>>
\new Staff = "trombone" \trombone
\new Staff = "euphonium" \euphonium
\new StaffGroup <<
\new Staff = "tubaeflat" \tubaeflat
\new Staff = "tubabflat" \tubabflat
>>
\new Staff = "tubularbells" \tubularbells
>>
\layout {
\context { \Staff \RemoveEmptyStaves }
\context {
\Score
\override BarNumber #'padding = #3
\override RehearsalMark #'padding = #2
skipBars = ##t
}
}
\midi { }
}