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