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