]> git.donarmstrong.com Git - lilypond.git/blob - input/test/orchestscore.ly
be3360d573eea63b9407e2069548f06e87bf05a8
[lilypond.git] / input / test / orchestscore.ly
1 \version "1.3.120";
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 M =  \notes \relative c''{
9
10 c1 | c2 c | c c | R1*5 
11 }
12
13 \score{ < 
14   \context StaffGroup = wood <
15     \context Staff = flauto <
16       \property Staff.instrument = "Flauto"
17       \property Staff.instr = "Fl."
18       \m
19     >
20     \context Staff = oboe <
21       \property Staff.instrument = "Oboe"
22       \property Staff.instr = "Ob."
23       \m
24     >
25     \context Staff = clarI <
26       \property Staff.instrument = "Clarinetto I"
27       \property Staff.instr = "Cl. I"
28       \m
29     >
30     \context Staff = clarII <
31       \property Staff.instrument = "Clarinetto II"
32       \property Staff.instr = "Cl. II"
33       \m
34     >
35     \context Staff = fagotto <
36       \property Staff.instrument = "Fagotto"
37       \property Staff.instr = "Fg."
38       \m
39     >
40   >
41   \context StaffGroup = brass <
42     \context Staff = cor <
43       \property Staff.instrument = "2 Corni in F"
44       \property Staff.instr = "Cor."
45       \context Voice = corI { \stemUp \M }
46       \context Voice = corII { \stemDown \M }
47     >
48     \context Staff = trp <
49       \property Staff.instrument = "2 Trp. in B\\textflat  "
50       \property Staff.instr = "Trp."
51       \context Voice = trpI { \stemUp \M }
52       \context Voice = trpII { \stemDown \M }
53     >
54   >
55     \context StaffGroup = percussion <\context Staff = timpani <
56       \property Staff.instrument = "Timpani"
57       \property Staff.instr = "Timp."
58       \notes{c''1 R1*8}
59     >
60   >
61   \context StaffGroup = strings <
62     \context GrandStaff = violins <
63       \context Staff = viI <
64         \property Staff.instrument = "Violin I"
65         \property Staff.instr = "Vi. I"
66         \m
67       >
68       \context Staff = viII <
69         \property Staff.instrument = "Violin II"
70         \property Staff.instr = "Vi. II"
71         \m
72       >
73     >
74     \context Staff = vla <
75       \property Staff.instrument = "Viola"
76       \property Staff.instr = "Vla."
77       \m
78     >
79     \context Staff = vlc <
80       %% \property Staff.instrument = "Violoncello"
81       \property StaffCombineStaff.instrument = #'(lines "Violoncello" "e" "Contrabasso")
82       \property Staff.instr = "Vlc"
83       \m
84     >
85     \context Staff = cb <
86       \property Staff.instrument = "Contrabasso"
87       \property Staff.instr = "C.B."
88       \m
89     >
90   >
91 >
92  \paper {
93 %    \paperSixteen;
94     linewidth = 185.\mm;
95     textheight = 260.\mm;
96     \translator {
97       \OrchestralScoreContext
98       skipBars = ##t 
99       markScriptPadding = #4.0
100       BarNumber \override $'padding = #3
101       RestCollision \override #'maximum-rest-count = #1
102       marginScriptHorizontalAlignment = #1
103     }
104     \translator { \HaraKiriStaffContext
105     }
106   }
107 }
108