-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovement1-layout.ly
161 lines (123 loc) · 3.97 KB
/
movement1-layout.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
<<
\new StaffGroup <<
\new Staff = "clarinet" {
\relative a' {
\override Score.BarNumber #'break-visibility = #'#(#f #t #t)
\set Score.barNumberVisibility = #(every-nth-bar-number-visible 1)
\set Score.markFormatter = #format-mark-circle-numbers
\set Staff.instrumentName = \markup \right-column {"Clarinetto in La"}
\set Staff.shortInstrumentName = #"Cl."
\set Staff.midiInstrument = #"clarinet"
#(set-accidental-style 'modern-cautionary)
\transposition a
\clef treble
\key c \major
\time 2/4
% \transpose c' a \trumpetMarch
\transpose a a \clarinetMarch
}
}
\new Staff = "bassoon" {
\relative c {
\override Score.BarNumber #'break-visibility = #'#(#f #t #t)
\set Score.barNumberVisibility = #(every-nth-bar-number-visible 1)
\set Score.markFormatter = #format-mark-circle-numbers
\set Staff.instrumentName = \markup \right-column {"Fagotto"}
\set Staff.shortInstrumentName = #"Fag."
\set Staff.midiInstrument = #"bassoon"
#(set-accidental-style 'modern-cautionary)
\transposition c
\clef bass
\key a \minor
\time 2/4
\transpose c c \bassoonMarch
}
}
>>
\new StaffGroup <<
\new Staff = "trumpet" {
\relative a' {
\override Score.BarNumber #'break-visibility = #'#(#f #t #t)
\set Score.barNumberVisibility = #(every-nth-bar-number-visible 1)
\set Score.markFormatter = #format-mark-circle-numbers
\set Staff.instrumentName = \markup \right-column {"Cornet à pistons in La"}
\set Staff.shortInstrumentName = #"Pist."
\set Staff.midiInstrument = #"trumpet"
#(set-accidental-style 'modern-cautionary)
\transposition a
\clef treble
\key c \major
\time 2/4
% \transpose c' a \trumpetMarch
\transpose a a \trumpetMarch
}
}
\new Staff = "trombone" {
\relative c {
\override Score.BarNumber #'break-visibility = #'#(#f #t #t)
\set Score.barNumberVisibility = #(every-nth-bar-number-visible 1)
\set Score.markFormatter = #format-mark-circle-numbers
\set Staff.instrumentName = \markup \right-column {"Trombono"}
\set Staff.shortInstrumentName = #"Trb."
\set Staff.midiInstrument = #"trombone"
#(set-accidental-style 'modern-cautionary)
\transposition c
\clef bass
\key a \minor
\time 2/4
\transpose c c \tromboneMarch
}
}
>>
\new Staff = "percussion" {
\relative c {
\override Score.BarNumber #'break-visibility = #'#(#f #t #t)
\set Score.barNumberVisibility = #(every-nth-bar-number-visible 1)
\set Score.markFormatter = #format-mark-circle-numbers
\set Staff.instrumentName = \markup \right-column {"Batterie"}
\set Staff.shortInstrumentName = #"Bat."
\set Staff.midiInstrument = #"percussion"
#(set-accidental-style 'modern-cautionary)
\transposition c
\clef percussion
\key c \major
\time 2/4
% \transpose c' a \trumpetMarch
\transpose c c \percussionMarch
}
}
\new StaffGroup <<
\new Staff = "violin" {
\relative c' {
\override Score.BarNumber #'break-visibility = #'#(#f #t #t)
\set Score.barNumberVisibility = #(every-nth-bar-number-visible 1)
\set Score.markFormatter = #format-mark-circle-numbers
\set Staff.instrumentName = \markup \right-column {"Violino"}
\set Staff.shortInstrumentName = #"Vl."
\set Staff.midiInstrument = #"violin"
#(set-accidental-style 'modern-cautionary)
\transposition c
\clef treble
\key c \major
\time 2/4
\transpose c c \violinMarch
}
}
\new Staff = "bass" {
\relative c {
\override Score.BarNumber #'break-visibility = #'#(#f #t #t)
\set Score.barNumberVisibility = #(every-nth-bar-number-visible 1)
\set Score.markFormatter = #format-mark-circle-numbers
\set Staff.instrumentName = \markup \right-column {"Contrabasso"}
\set Staff.shortInstrumentName = #"C.B."
\set Staff.midiInstrument = #"bass"
#(set-accidental-style 'modern-cautionary)
\transposition c
\clef bass
\key a \minor
\time 2/4
\transpose c c \bassMarch
}
}
>>
>>