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