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