]> git.donarmstrong.com Git - lilypond.git/blob - input/test/orchestscore.ly
release: 1.3.52
[lilypond.git] / input / test / orchestscore.ly
1 \version "1.3.42";
2
3 m = \notes \relative c''{
4
5 c1 | c2 c | c c | c c | \break c c | c c | c c | c c | 
6 }
7
8 \score{ < 
9   \context StaffGroup = wood <
10     \context Staff = flauto <
11       \property Staff.instrument = "Flauto"
12       \property Staff.instr = "Fl."
13       \m
14     >
15     \context Staff = oboe <
16       \property Staff.instrument = "Oboe"
17       \property Staff.instr = "Ob."
18       \m
19     >
20     \context Staff = clarI <
21       \property Staff.instrument = "Clarinetto I"
22       \property Staff.instr = "Cl. I"
23       \m
24     >
25     \context Staff = clarII <
26       \property Staff.instrument = "Clarinetto II"
27       \property Staff.instr = "Cl. II"
28       \m
29     >
30     \context Staff = fagotto <
31       \property Staff.instrument = "Fagotto"
32       \property Staff.instr = "Fg."
33       \m
34     >
35   >
36   \context StaffGroup = brass <
37     \context Staff = cor <
38       \property Staff.instrument = "2 Corni in F"
39       \property Staff.instr = "Cor."
40       \context Voice = corI { \stemup \m }
41       \context Voice = corII { \stemdown \m }
42     >
43     \context Staff = trp <
44       \property Staff.instrument = "2 Trp. in B\\textflat  "
45       \property Staff.instr = "Trp."
46       \context Voice = trpI { \stemup \m }
47       \context Voice = trpII { \stemdown \m }
48     >
49   >
50     \context StaffGroup = percussion <\context Staff = timpani <
51       \property Staff.instrument = "Timpani"
52       \property Staff.instr = "Timp."
53       \m
54     >
55   >
56   \context StaffGroup = strings <
57     \context GrandStaff = violins <
58       \context Staff = viI <
59         \property Staff.instrument = "Violin I"
60         \property Staff.instr = "Vi. I"
61         \m
62       >
63       \context Staff = viII <
64         \property Staff.instrument = "Violin II"
65         \property Staff.instr = "Vi. II"
66         \m
67       >
68     >
69     \context Staff = vla <
70       \property Staff.instrument = "Viola"
71       \property Staff.instr = "Vla."
72       \m
73     >
74     \context Staff = vlc <
75       \property Staff.instrument = "Violoncello"
76       \property Staff.instr = "Vlc"
77       \m
78     >
79     \context Staff = cb <
80       \property Staff.instrument = "Contrabasso"
81       \property Staff.instr = "C.B."
82       \m
83     >
84   >
85 >
86  \paper {
87 %    \paper_sixteen;
88     linewidth = 185.\mm;
89     textheight = 260.\mm;
90     \translator {
91         \OrchestralScoreContext
92         barNumberScriptPadding = 10;
93         minVerticalAlign = 2.2*\staffheight;
94
95     }
96     \translator { \StaffContext
97         \consists "Instrument_name_engraver";
98         marginScriptPadding = 15.0;
99     }
100   }
101 }
102