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