]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/N.W.Gade/score.ly
patch::: 1.1.31.mb2
[lilypond.git] / mutopia / N.W.Gade / score.ly
1 \header{
2 title =         "Imellan Fjeldene. Ouverture";
3 composer =      "Niels W Gade";
4 enteredby =     "Mats Bengtsson";
5 latexheaders = "\\input global";
6 copyright =     "Mats Bengtsson, 1999. Non-commersial copying welcome.\\\\" +
7                 "Typeset from handwritten parts at Statens Musikbibliotek, " +
8                 "Stockholm, Sweden";
9 }
10
11 \version "1.0.14";
12
13 \include "global.ly"
14 \include "wood.ly"
15 \include "brass.ly"
16 \include "strings.ly"
17 \include "paper16.ly";
18
19
20 \score{ <
21   \type StaffGroup = wood <
22     \type Staff = flauto <
23       \property Staff.instrument = "Flauto"
24       \property Staff.instr = "Fl."
25       \global
26       \flauto
27     >
28     \type Staff = oboe <
29       \property Staff.instrument = "Oboe"
30       \property Staff.instr = "Ob."
31       \global
32       \marks
33       \oboe
34     >
35     \type Staff = clarI <
36       \property Staff.instrument = "Clarinetto I"
37       \property Staff.instr = "Cl. I"
38       \global
39       \clarI
40     >
41     \type Staff = clarII <
42       \property Staff.instrument = "Clarinetto II"
43       \property Staff.instr = "Cl. II"
44       \global
45       \clarII
46     >
47     \type Staff = fagotto <
48       \property Staff.instrument = "Fagotto"
49       \property Staff.instr = "Fg."
50       \global
51       \fagotto
52     >
53   >
54   \type StaffGroup = brass <
55     \type Staff = cor <
56       \global
57       \property Staff.instrument = "2 Corni in F"
58       \property Staff.instr = "Cor."
59       \type Voice = corI { \stemup \corI }
60       \type Voice = corII { \stemdown \corII }
61     >
62     \type Staff = trp <
63       \global
64       \property Staff.instrument = "2 Trp. in B\\textflat  "
65       \property Staff.instr = "Trp."
66       \type Voice = trpI { \stemup \trpI }
67       \type Voice = trpII { \stemdown \trpII }
68     >
69   >
70     \type StaffGroup = percussion <\type Staff = timpani <
71       \property Staff.instrument = "Timpani"
72       \property Staff.instr = "Timp."
73       \global
74       \timpani
75     >
76   >
77   \type StaffGroup = strings <
78     \type GrandStaff = violins <
79       \type Staff = viI <
80         \property Staff.instrument = "Violin I"
81         \property Staff.instr = "Vi. I"
82         \global
83         \viI
84       >
85       \type Staff = viII <
86         \property Staff.instrument = "Violin II"
87         \property Staff.instr = "Vi. II"
88         \global
89         \viII
90       >
91     >
92     \type Staff = vla <
93       \property Staff.instrument = "Viola"
94       \property Staff.instr = "Vla."
95       \global
96       \vla
97     >
98     \type Staff = vlc <
99       \property Staff.instrument = "Violoncello"
100       \property Staff.instr = "Vlc"
101       \global
102       \vlc
103     >
104     \type Staff = cb <
105       \property Staff.instrument = "Contrabasso"
106       \property Staff.instr = "C.B."
107       \global
108       \cb
109     >
110   >
111 >
112  \paper {
113     \paper_sixteen;
114     linewidth = 185.\mm;
115     textheight = 260.\mm;
116     \translator {
117         \OrchestralScoreContext
118         minVerticalAlign = 2.5*\staffheight;
119     }
120     \translator { \StaffContext
121         \consists "Staff_margin_engraver";
122         marginHangOnClef = 1;
123         marginScriptPadding = "13.0";
124         textstyle = "italic";
125     }
126 \translator{\VoiceContext
127 \remove Auto_beam_engraver; % Bug workaround!
128 }
129   }
130 }
131
132 \score{
133   \type StaffGroup <
134     \oboe
135     \flauto
136     \type Staff = cor {\notes \transpose bes <\clarI \clarII >}
137     \fagotto
138     \type Staff = cor {\notes \transpose f <\corI \corII >}
139     \type Staff = cor {\notes \transpose bes <\trpI \trpII >}
140     \timpani
141     \viI
142     \viII
143     \vla
144     \vlc
145     \cb
146   >
147   \midi {
148     \tempo 4=120;
149   }
150 }