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