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