]> git.donarmstrong.com Git - lilypond.git/blob - input/no-notation/midi-volume-equaliser.ly
* input/test/script-stack.ly: change name from stacked-scripts
[lilypond.git] / input / no-notation / midi-volume-equaliser.ly
1 \version "1.7.19"
2 \header { texidoc = "@cindex Midi Volume Equaliser
3 The full orchestra plays a notes, where groups stop one after
4 another. U se this to tune equalizer settings. " }
5
6 flauti = \notes \relative c' {
7   \property Staff.midiInstrument = #"flute"
8   \property Staff.instrument    = #"2 Flauti"
9   \property Staff.instr         = #"Fl."
10
11   c1 R1*10
12 }
13
14 oboi = \notes \relative c' {
15   \property Staff.midiInstrument = #"oboe"
16   \property Staff.instrument    = #"2 Oboi"
17   \property Staff.instr         = #"Ob."
18
19   R1*1 c1 R1*9
20 }
21
22 clarinetti = \notes \relative c' {
23   \property Staff.midiInstrument = #"clarinet"
24   \property Staff.instrument    = #"Clarinetti"
25   \property Staff.instr         = #"Cl"
26
27   R1*2 c1 R1*8
28 }
29
30 fagotti = \notes \relative c' {
31   \property Staff.midiInstrument = #"bassoon"
32   \property Staff.instrument    = #"2 Fagotti"
33   \property Staff.instr         = #"Fg."
34
35   \clef bass
36   R1*3 c1 R1*7
37 }
38
39 corni = \notes \relative c' {
40   \property Staff.midiInstrument = #"french horn"
41   \property Staff.instrument    = #"Corni"
42   \property Staff.instr         = #"Cor"
43
44   R1*4 c1 R1*6
45 }
46
47 trombe = \notes \relative c' {
48   \property Staff.midiInstrument = #"trumpet"
49   \property Staff.instrument    = #"Trombe"
50   \property Staff.instr         = #"Tp."
51
52   \clef bass
53   R1*5 c1 R1*5
54 }
55
56 timpani = \notes \relative c' {
57   \property Staff.midiInstrument = #"timpani"
58   \property Staff.instrument    = #"Timpani"
59   \property Staff.instr         = #"Timp."
60
61   R1*6 c1 R1*4
62 }
63
64 violinoI = \notes \relative c' {
65   \property Staff.midiInstrument = #"violin"
66   \property Staff.instrument    = #"Violino I "
67   \property Staff.instr         = #"Vl. I "
68
69   R1*7 c1 R1*3
70 }
71
72 violinoII = \notes \relative c' {
73   \property Staff.midiInstrument = #"violin"
74   \property Staff.instrument    = #"Violino II "
75   \property Staff.instr         = #"Vl. II "
76  
77   R1*8 c1 R1*2
78 }
79
80 viola = \notes \relative c' {
81   \property Staff.midiInstrument = #"viola"
82   \property Staff.instrument    = #"Viola"
83   \property Staff.instr         = #"Vla."
84
85   \clef alto
86   R1*9 c1 R1*1
87 }
88
89 violoncello = \notes \relative c' {
90   \property Staff.midiInstrument = #"cello"
91   %\property Staff.midiInstrument = #"contrabass"
92   \property Staff.instrument    = #"Violoncello"
93   \property Staff.instr         = #"Vc."
94   
95   \clef bass
96   R1*10 c1
97 }
98
99
100 \score {
101   < 
102     \context StaffGroup ="legni" < 
103       \context Staff ="flauti" \flauti
104       \context Staff ="oboi" \oboi
105       \context Staff ="clarinetti" \clarinetti 
106       \context Staff ="fagotti" \fagotti 
107     >
108     \context StaffGroup ="ottoni" <
109       \context Staff ="corni" \corni
110       \context Staff ="trombe" \trombe
111     >
112     \context StaffGroup ="timpani" <
113       \context Staff ="timpani" \timpani
114      { 
115        \skip 1 
116        % Hmm: this forces a staff-bracket, that's good!
117        % However, I can't find where is decided on staff-bracket yes/no
118      }
119     >
120     \context StaffGroup ="archi" <
121       \context GrandStaff ="violini" <
122         \context Staff ="violino1" \violinoI
123         \context Staff ="violino2" \violinoII
124       >
125       \context Staff ="viola" \viola
126       \context Staff ="violoncello" \violoncello
127     >
128   >
129
130   \paper {
131         \paperSixteen
132         indent=100.0\mm
133         linewidth=150.0\mm
134     \translator {
135       \RemoveEmptyStaffContext
136     }
137   }
138   \midi {
139         \tempo 1 = 60
140   }
141 }
142
143