]> git.donarmstrong.com Git - lilypond.git/blob - input/test/coriolan-margin.ly
* Documentation/topdocs/NEWS.tely (Top): mention John Mandereau.
[lilypond.git] / input / test / coriolan-margin.ly
1
2 \version "2.7.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.instrument = #"2 Flauti"
29   \set Staff.instr = #"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.instrument = #"2 Oboi"
40   \set Staff.instr = #"Ob."
41   c1 c
42 }
43
44 clarinetti =  \relative c' {
45     \set Staff.instrument = \markup { \column { "Clarinetti" \line { "in B" \raisedFlat } } }
46     \set Staff.instr = \markup { \smaller  { "Cl(B" \raisedFlat ")" } }
47
48   c1 c
49 }
50
51 fagotti =  \relative c' {
52   \set Staff.instrument = #"2 Fagotti"
53   \set Staff.instr = #"Fg."
54   c1 c
55 }
56
57 corni =  \relative c' {
58     \set Staff.instrument = \markup { \column { "Corni" \line { "in E" \raisedFlat } } }
59     \set Staff.instr = \markup { \smaller  { "Cor(E" \raisedFlat ")" } }
60
61   c1 c
62 }
63
64 trombe =  \relative c' {
65   \set Staff.instrument = \markup \column { "2 Trombe" "(C)" }
66   \set Staff.instr = \markup \column {  "Tbe." "(C)" }
67
68   c1 c
69 }
70
71 timpani =  \relative c' {
72   \set Staff.instrument = \markup \column { "Timpani" "(C-G)" }
73   \set Staff.instr = #"Timp."
74
75   c1 c
76 }
77
78 violinoI =  \relative c' {
79   \set Staff.instrument = #"Violino I  "
80   \set Staff.instr = #"Vl. I  "
81   c1 c
82 }
83
84 violinoII =  \relative c' {
85   \set Staff.instrument = #"Violino II  "
86   \set Staff.instr = #"Vl. II  "
87   c1 c
88 }
89
90 viola =  \relative c' {
91   \set Staff.instrument = #"Viola"
92   \set Staff.instr = #"Vla."
93   c1 c 
94   %c
95 }
96
97 violoncello =  \relative c' {
98   \set Staff.instrument = \markup \column { "Violoncello" "e" "Contrabasso" }
99   \set Staff.instr = \markup \column {  "Vc." "Cb." }
100   c1 c
101 }
102
103
104 \paper {
105     indent=10.0\mm
106     linewidth=150.0\mm
107     raggedbottom = ##t 
108 }
109
110 #(set-global-staff-size 16)
111 \book {
112     \score {
113       << 
114         \context StaffGroup ="legni" << 
115           \context Staff ="flauti" \flauti
116           \context Staff ="oboi" \oboi
117           \context Staff ="clarinetti" \clarinetti 
118           \context Staff ="fagotti" \fagotti 
119         >>
120         \context StaffGroup ="ottoni" <<
121           \context Staff ="corni" \corni
122           \context Staff ="trombe" \trombe
123         >>
124         \context StaffGroup ="timpani" <<
125           \context 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         \context StaffGroup ="archi" <<
133           \context GrandStaff ="violini" <<
134             \context Staff ="violinoI" \violinoI
135             \context Staff ="violinoII" \violinoII
136           >>
137           \context Staff ="viola" \viola
138           \context 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         linewidth=150.0\mm
155     }
156 }
157
158 %% Local Variables:
159 %% coding: utf-8
160 %% End: