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