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