]> git.donarmstrong.com Git - lilypond.git/blob - input/test/equaliser.ly
release: 1.3.153
[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    = #`(lines "2 Clarinetti" (columns "(B" (music "accidentals--1") ")"))
26   \property Staff.instr         = #`(lines "Cl."(columns "(B" (music "accidentals--1") ")"))
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   \clef bass
37   R1*3 c1 R1*7
38 }
39
40 corni = \notes \relative c' {
41   \property Staff.midiInstrument = #"french horn"
42   \property Staff.instrument    = #`(lines "2 Corni" (columns "(E" (music "accidentals--1") ")"))
43   \property Staff.instr         = #`(lines "Cor." (columns "(E" (music "accidentals--1") ")"))
44
45   R1*4 c1 R1*6
46 }
47
48 trombe = \notes \relative c' {
49   \property Staff.midiInstrument = #"trumpet"
50   \property Staff.instrument    = #'(lines "2 Trombe" "(C)")
51   \property Staff.instr         = #'(lines "Tbe." "(C)")
52
53   \clef bass
54   R1*5 c1 R1*5
55 }
56
57 timpani = \notes \relative c' {
58   \property Staff.midiInstrument = #"timpani"
59   \property Staff.instrument    = #'(lines "Timpani" "(C-G)")
60   \property Staff.instr         = #"Timp."
61
62   R1*6 c1 R1*4
63 }
64
65 violinoI = \notes \relative c' {
66   \property Staff.midiInstrument = #"violin"
67   \property Staff.instrument    = #"Violino I "
68   \property Staff.instr         = #"Vl. I "
69
70   R1*7 c1 R1*3
71 }
72
73 violinoII = \notes \relative c' {
74   \property Staff.midiInstrument = #"violin"
75   \property Staff.instrument    = #"Violino II "
76   \property Staff.instr         = #"Vl. II "
77  
78   R1*8 c1 R1*2
79 }
80
81 viola = \notes \relative c' {
82   \property Staff.midiInstrument = #"viola"
83   \property Staff.instrument    = #"Viola"
84   \property Staff.instr         = #"Vla."
85
86   \clef alto
87   R1*9 c1 R1*1
88 }
89
90 violoncello = \notes \relative c' {
91   \property Staff.midiInstrument = #"cello"
92   %\property Staff.midiInstrument = #"contrabass"
93   \property Staff.instrument    = #'(lines "Violoncello" "e" "Contrabasso")
94   \property Staff.instr         = #'(lines "Vc." "Cb.")
95   
96   \clef bass
97   R1*10 c1
98 }
99
100 \include "paper16.ly"
101
102 \score {
103   < 
104     \context StaffGroup ="legni" < 
105       \context Staff ="flauti" \flauti
106       \context Staff ="oboi" \oboi
107       \context Staff ="clarinetti" \clarinetti 
108       \context Staff ="fagotti" \fagotti 
109     >
110     \context StaffGroup ="ottoni" <
111       \context Staff ="corni" \corni
112       \context Staff ="trombe" \trombe
113     >
114     \context StaffGroup ="timpani" <
115       \context Staff ="timpani" \timpani
116      { 
117        \skip 1 
118        % Hmm: this forces a staff-bracket, that's good!
119        % However, I can't find where is decided on staff-bracket yes/no
120      }
121     >
122     \context StaffGroup ="archi" <
123       \context GrandStaff ="violini" <
124         \context Staff ="violino1" \violinoI
125         \context Staff ="violino2" \violinoII
126       >
127       \context Staff ="viola" \viola
128       \context Staff ="violoncello" \violoncello
129     >
130   >
131  \header{
132                 title = "Coriolan"
133                 subtitle = "Ouverture" 
134                 opus = "Opus 62"
135                 composer = "Ludwig van Beethoven (1770-1827)"
136                 enteredby = "JCN"
137                 copyright = "public domain"
138         }
139
140   \paper {
141         \paperSixteen
142         indent=100.0\mm
143         linewidth=150.0\mm
144     \translator {
145       \HaraKiriStaffContext
146     }
147   }
148   \midi {
149         \tempo 1 = 60
150   }
151 }
152