]> git.donarmstrong.com Git - lilypond.git/blob - input/test/coriolan-margin.ly
a950c3a3f6beca94d06640c0ec23b3e358bc8308
[lilypond.git] / input / test / coriolan-margin.ly
1
2 \version "2.9.13"
3
4
5 % Ugh, we need to override some LaTeX titling stuff
6 \header {
7   title =       "Ouvertüre"
8   subtitle =    "Zu Heinrich Joseph v. Collins Trauerspiel"
9   subsubtitle = \markup { \large \bold "Coriolan" }
10   opus = "Op. 62"
11   piece = \markup { \large Allegro con brio }
12   composer =     "Ludwig van Beethoven (1770-1827)"
13
14 texidoc = "@cindex Orchestra Score
15 @cindex Coriolan Score
16 In an orchestral score (Beethoven's Coriolan overture), there are 
17 different instrument groups, and some of the instruments may be
18 transposed. Instruments are indicated either with a long or short name.
19 " }
20
21 #(set-global-staff-size 16)
22
23 raisedFlat = \markup { \raise #0.4 \smaller \smaller \flat  }
24
25
26
27 flauti =  \relative c' {
28   \set Staff.instrumentName = #"2 Flauti"
29   \set Staff.shortInstrumentName = #"Fl."
30   \time 4/4
31   c1 
32   \break c
33 %  \break c
34 %  \break c
35   \bar"|."
36 }
37
38 oboi =  \relative c' {
39   \set Staff.instrumentName = #"2 Oboi"
40   \set Staff.shortInstrumentName = #"Ob."
41   c1 c
42 }
43
44 clarinetti =  \relative c' {
45     \set Staff.instrumentName = \markup { \column { "Clarinetti" \line { "in B" \raisedFlat } } }
46     \set Staff.shortInstrumentName = \markup { \smaller  { "Cl(B" \raisedFlat ")" } }
47
48   c1 c
49 }
50
51 fagotti =  \relative c' {
52   \set Staff.instrumentName = #"2 Fagotti"
53   \set Staff.shortInstrumentName = #"Fg."
54   c1 c
55 }
56
57 corni =  \relative c' {
58     \set Staff.instrumentName = \markup { \column { "Corni" \line { "in E" \raisedFlat } } }
59     \set Staff.shortInstrumentName = \markup { \smaller  { "Cor(E" \raisedFlat ")" } }
60
61   c1 c
62 }
63
64 trombe =  \relative c' {
65   \set Staff.instrumentName = \markup \column { "2 Trombe" "(C)" }
66   \set Staff.shortInstrumentName = \markup \column {  "Tbe." "(C)" }
67
68   c1 c
69 }
70
71 timpani =  \relative c' {
72   \set Staff.instrumentName = \markup \column { "Timpani" "(C-G)" }
73   \set Staff.shortInstrumentName = #"Timp."
74
75   c1 c
76 }
77
78 violinoI =  \relative c' {
79   \set Staff.instrumentName = #"Violino I  "
80   \set Staff.shortInstrumentName = #"Vl. I  "
81   c1 c
82 }
83
84 violinoII =  \relative c' {
85   \set Staff.instrumentName = #"Violino II  "
86   \set Staff.shortInstrumentName = #"Vl. II  "
87   c1 c
88 }
89
90 viola =  \relative c' {
91   \set Staff.instrumentName = #"Viola"
92   \set Staff.shortInstrumentName = #"Vla."
93   c1 c 
94   %c
95 }
96
97 violoncello =  \relative c' {
98   \set Staff.instrumentName = \markup \column { "Violoncello" "e" "Contrabasso" }
99   \set Staff.shortInstrumentName = \markup \column {  "Vc." "Cb." }
100   c1 c
101 }
102
103
104 \paper {
105     indent=10.0\mm
106     line-width=150.0\mm
107     ragged-bottom = ##t 
108 }
109
110 #(set-global-staff-size 16)
111 \book {
112     \score {
113       << 
114         \new StaffGroup = "legni" << 
115           \new Staff = "flauti" \flauti
116           \new Staff = "oboi" \oboi
117           \new Staff = "clarinetti" \clarinetti 
118           \new Staff = "fagotti" \fagotti 
119         >>
120         \new StaffGroup = "ottoni" <<
121           \new Staff = "corni" \corni
122           \new Staff = "trombe" \trombe
123         >>
124         \new StaffGroup = "timpani" <<
125           \new Staff = "timpani" \timpani
126          { 
127            \skip 1 
128            % Hmm: this forces a staff-bracket, that's good!
129            % However, I can't find where is decided on staff-bracket yes/no
130          }
131         >>
132         \new StaffGroup = "archi" <<
133           \new GrandStaff = "violini" <<
134             \new Staff = "violinoI" \violinoI
135             \new Staff = "violinoII" \violinoII
136           >>
137           \new Staff = "viola" \viola
138           \new Staff = "violoncello" \violoncello
139         >>
140       >>
141       \layout {
142           \context {
143               \RemoveEmptyStaffContext
144           }
145           \context {
146               \Score
147               \override TimeSignature #'style = #'C
148           }
149       }
150     }
151     % this is ignored?
152     \paper {
153         indent=10.0\mm
154         line-width=150.0\mm
155     }
156 }
157
158 %% Local Variables:
159 %% coding: utf-8
160 %% End: