3 texidoc = "@cindex Midi Volume Equaliser
4 The full orchestra plays a notes, where groups stop one after
5 another. Use this to tune equalizer settings. "
8 #(set-global-staff-size 16)
12 Override, see scm/midi.scm:
14 #(set! instrument-equalizer-alist
19 instrument-equalizer-alist))
23 flauti = \relative c' {
24 \set Staff.midiInstrument = #"flute"
25 \set Staff.instrumentName = #"2 Flauti"
26 \set Staff.shortInstrumentName = #"Fl."
32 \set Staff.midiInstrument = #"oboe"
33 \set Staff.instrumentName = #"2 Oboi"
34 \set Staff.shortInstrumentName = #"Ob."
39 clarinetti = \relative c' {
40 \set Staff.midiInstrument = #"clarinet"
41 \set Staff.instrumentName = #"Clarinetti"
42 \set Staff.shortInstrumentName = #"Cl"
47 fagotti = \relative c' {
48 \set Staff.midiInstrument = #"bassoon"
49 \set Staff.instrumentName = #"2 Fagotti"
50 \set Staff.shortInstrumentName = #"Fg."
56 corni = \relative c' {
57 \set Staff.midiInstrument = #"french horn"
58 \set Staff.instrumentName = #"Corni"
59 \set Staff.shortInstrumentName = #"Cor"
64 trombe = \relative c' {
65 \set Staff.midiInstrument = #"trumpet"
66 \set Staff.instrumentName = #"Trombe"
67 \set Staff.shortInstrumentName = #"Tp."
73 timpani = \relative c' {
74 \set Staff.midiInstrument = #"timpani"
75 \set Staff.instrumentName = #"Timpani"
76 \set Staff.shortInstrumentName = #"Timp."
81 violinoI = \relative c' {
82 \set Staff.midiInstrument = #"violin"
83 \set Staff.instrumentName = #"Violino I "
84 \set Staff.shortInstrumentName = #"Vl. I "
89 violinoII = \relative c' {
90 \set Staff.midiInstrument = #"violin"
91 \set Staff.instrumentName = #"Violino II "
92 \set Staff.shortInstrumentName = #"Vl. II "
97 viola = \relative c' {
98 \set Staff.midiInstrument = #"viola"
99 \set Staff.instrumentName = #"Viola"
100 \set Staff.shortInstrumentName = #"Vla."
106 violoncello = \relative c' {
107 \set Staff.midiInstrument = #"cello"
108 %\set Staff.midiInstrument = #"contrabass"
109 \set Staff.instrumentName = #"Violoncello"
110 \set Staff.shortInstrumentName = #"Vc."
119 \new StaffGroup = "legni" <<
120 \new Staff = "flauti" \flauti
121 \new Staff = "oboi" \oboi
122 \new Staff = "clarinetti" \clarinetti
123 \new Staff = "fagotti" \fagotti
125 \new StaffGroup = "ottoni" <<
126 \new Staff = "corni" \corni
127 \new Staff = "trombe" \trombe
129 \new StaffGroup = "timpani" <<
130 \new Staff = "timpani" \timpani
133 %% Hmm: this forces a staff-bracket, that's good!
134 %% However, I can't find where is decided on staff-bracket yes/no
137 \new StaffGroup = "archi" <<
138 \new GrandStaff = "violini" <<
139 \new Staff = "violino1" \violinoI
140 \new Staff = "violino2" \violinoII
142 \new Staff = "viola" \viola
143 \new Staff = "violoncello" \violoncello
149 \RemoveEmptyStaffContext
156 tempoWholesPerMinute = #(ly:make-moment 60 1)