]> git.donarmstrong.com Git - lilypond.git/blob - input/test/coriolan-margin.ly
patch::: 1.3.33.jcn2
[lilypond.git] / input / test / coriolan-margin.ly
1 flauti = \notes \relative c' {
2   \property Staff.instrument    = #"2 Flauti"
3   \property Staff.instr         = #"Fl."
4   c1 
5   \break c
6   \bar"|.";
7 }
8
9 oboi = \notes \relative c' {
10   \property Staff.instrument    = #"2 Oboi"
11   \property Staff.instr         = #"Ob."
12   c1 c
13 }
14
15 clarinetti = \notes \relative c' {
16   \property Staff.instrument    = #"2 Clarinetti\n(B\\textflat)"
17   \property Staff.instr         = #"Cl.\n(B\\textflat)"
18
19   c1 c
20 }
21
22 fagotti = \notes \relative c' {
23   \property Staff.instrument    = #"2 Fagotti"
24   \property Staff.instr         = #"Fg."
25   c1 c
26 }
27
28 corni = \notes \relative c' {
29   \property Staff.instrument    = #"2 Corni\n(E\\textflat)"
30   \property Staff.instr         = #"Cor.\n(E\\textflat)"
31
32   c1 c
33 }
34
35 trombe = \notes \relative c' {
36   \property Staff.instrument    = #"2 Trombe\n(C)"
37   \property Staff.instr         = #"Tbe.\n(C)"
38
39   c1 c
40 }
41
42 timpani = \notes \relative c' {
43   \property Staff.instrument    = #"Timpani\n(C-G)"
44   \property Staff.instr         = #"Timp."
45
46   c1 c
47 }
48
49 violino1 = \notes \relative c' {
50   \property Staff.instrument    = #"Violino I"
51   \property Staff.instr         = #"Vl. I"
52   c1 c
53 }
54
55 violino2 = \notes \relative c' {
56   \property Staff.instrument    = #"Violino II"
57   \property Staff.instr         = #"Vl. II"
58   c1 c
59 }
60
61 viola = \notes \relative c' {
62   \property Staff.instrument    = #"Viola"
63   \property Staff.instr         = #"Vla."
64   c1 c
65 }
66
67 violoncello = \notes \relative c' {
68   \property Staff.instrument    = #"Violoncello\ne\nContrabasso"
69   \property Staff.instr         = #"Vc.\nCb."
70   c1 c
71 }
72
73 \include "paper16.ly"
74
75 \score {
76   < 
77     \context StaffGroup ="legni" < 
78       \context Staff ="flauti" \flauti
79       \context Staff ="oboi" \oboi
80       \context Staff ="clarinetti" \clarinetti 
81       \context Staff ="fagotti" \fagotti 
82     { %%urg
83       \skip 1; 
84       \context Staff="flauti" \property Staff.marginScriptPadding = #25
85       \context Staff ="oboi" \property Staff.marginScriptPadding = #25
86       \context Staff ="clarinetti" \property Staff.marginScriptPadding = #25
87       \context Staff ="fagotti" \property Staff.marginScriptPadding = #25
88     }
89     >
90     \context StaffGroup ="ottoni" <
91       \context Staff ="corni" \corni
92       \context Staff ="trombe" \trombe
93     { %%urg
94       \skip 1; 
95       \context Staff="corni" \property Staff.marginScriptPadding = #25
96       \context Staff ="trome" \property Staff.marginScriptPadding = #25
97     }
98     >
99     \context StaffGroup ="timpani" <
100       \context Staff ="timpani" \timpani
101     { %%urg
102       \skip 1; 
103       \context Staff="timpani" \property Staff.marginScriptPadding = #25
104     }
105     >
106     \context StaffGroup ="archi" <
107       \context GrandStaff ="violini" <
108         \context Staff ="violino1" \violino1
109         \context Staff ="violino2" \violino2
110     { %%urg
111       \skip 1; 
112       \context Staff="violino1" \property Staff.marginScriptPadding = #25
113       \context Staff="violino2" \property Staff.marginScriptPadding = #25
114     }
115       >
116       \context Staff ="viola" \viola
117       \context Staff ="violoncello" \violoncello
118     { %%urg
119       \skip 1; 
120       \context Staff="viola" \property Staff.marginScriptPadding = #25
121       \context Staff="violoncello" \property Staff.marginScriptPadding = #25
122     }
123     >
124   >
125  \header{
126                 title = "Coriolan";
127                 subtitle = "Ouverture"; 
128                 opus = "Opus 62";
129                 composer = "Ludwig van Beethoven (1770-1827)";
130                 enteredby = "JCN";
131                 copyright = "public domain";
132         }
133
134   \paper {
135         \paper_sixteen
136         indent=100.0\mm;
137         linewidth=150.0\mm;
138     \translator {
139       \HaraKiriStaffContext
140       marginScriptPadding = #55  %% urg, this is in pt
141     }
142   }
143 }
144