]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/Coriolan/c-midi.ly
patch::: 1.3.133.jcn1
[lilypond.git] / mutopia / Coriolan / c-midi.ly
1
2 %%
3 %% Hopefully, this can be junked when part-combiner+midi+dynamics work ok.
4 %%
5
6 \version "1.3.117";
7
8 \include "header.ly"
9 \include "global.ly"
10
11 \include "flauto-1.ly"
12 \include "flauto-2.ly"
13 \include "oboe-1.ly"
14 \include "oboe-2.ly"
15 \include "clarinetto-1.ly"
16 \include "clarinetto-2.ly"
17 \include "fagotto-1.ly"
18 \include "fagotto-2.ly"
19 \include "corno-1.ly"
20 \include "corno-2.ly"
21 \include "trombo-1.ly"
22 \include "trombo-2.ly"
23 \include "timpani.ly"
24 \include "violino-1.ly"
25 \include "violino-2.ly"
26 \include "viola-1.ly"
27 \include "viola-2.ly"
28 \include "violoncello.ly"
29 \include "contrabasso.ly"
30
31 \score{
32         <
33         \global
34         \context Staff=flauti <
35                 \property Staff.midiInstrument = #"flute"
36                 \flautoI
37                 \flautoII
38         >
39         \context Staff=oboi <
40                 \property Staff.midiInstrument = #"oboe"
41                 \oboeI
42                 \oboeII
43         >
44         \context Staff=clarinetti <
45                 \property Staff.midiInstrument = #"clarinet"
46                 \property Staff.transposing = #-2
47                 \clarinettoI
48                 \clarinettoII
49         >
50         \context Staff=fagotti <
51                 \property Staff.midiInstrument = #"bassoon"
52                 \fagottoI
53                 \fagottoII
54         >
55         \context Staff=corni <
56                 \property Staff.midiInstrument = #"french horn"
57                 \property Staff.transposing = #3
58                 \cornoI
59                 \cornoII
60         >
61         \context Staff=trombe <
62                 \property Staff.midiInstrument = #"trumpet"
63                 \tromboI
64                 \tromboII
65         >
66         \context Staff=timpani <
67                 \property Staff.midiInstrument = #"timpani"
68                 \timpani
69         >
70         \context Staff=violini <
71                 \property Staff.midiInstrument = #"violin"
72                 \violinoI
73                 \violinoII
74         >
75         \context Staff=violi <
76                 \property Staff.midiInstrument = #"viola"
77                 \violaI
78                 \violaII
79         >
80         \context Staff=violoncello <
81                 \property Staff.midiInstrument = #"cello"
82                 \violoncello
83         >
84         \context Staff=contrabasso <
85                 \property Staff.midiInstrument = #"contrabass"
86                 \property Staff.transposing = #-12
87                 \contrabasso
88         >
89         >
90         \include "coriolan-midi.ly"
91 }
92