]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/Coriolan/coriolan.ly
patch::: 1.3.79.jcn4
[lilypond.git] / mutopia / Coriolan / coriolan.ly
1 \header{
2 filename =       "coriolan.ly";
3 title =  "Ouverture"; 
4 subtitle = "Coriolan";
5 opus = "Op. 62";
6 composer =       "Ludwig van Beethoven (1770-1827)";
7 enteredby =      "JCN";
8 copyright =      "public domain";
9 }
10
11 \version "1.3.59";
12
13 \include "global.ly"
14 \include "paper16.ly"
15
16 \include "contrabasso.ly"
17 \include "clarinetti.ly"
18 \include "corni.ly"
19 \include "fagotti.ly"
20 \include "flauti.ly"
21 \include "oboi.ly"
22 \include "timpani.ly"
23 \include "trombe.ly"
24 \include "viola-1.ly"
25 \include "viola-2.ly"
26 \include "violino-1.ly"
27 \include "violino-2.ly"
28 \include "violoncello.ly"
29
30
31 legniGroup = \context StaffGroup = legni_group <
32         \flautiStaff
33         \oboiStaff
34         \clarinettiStaff
35         \fagottiStaff
36 >
37
38 ottoniGroup = \context StaffGroup = otonni_group <
39         \corniStaff
40         \trombeStaff
41 >
42
43 timpaniGroup = \context StaffGroup = timpani_group <
44         \timpaniStaff
45         % Force a staff bracket (?)
46         \context Staff = timpany { \skip 1*314; }
47 >
48
49 violiniGroup = \context GrandStaff = violini_group <
50         \violinoIStaff
51         \violinoIIStaff
52 >
53
54 violiGroup = \context PianoStaff = violi_group <
55         \context StaffCombineStaff=one {
56                 \clef "alto"; 
57                 \skip 1*314; 
58                 \bar "|."; 
59         }
60         \context StaffCombineStaff=two {
61                 \clef "alto"; 
62                 \skip 1*314; 
63                 \bar "|."; 
64         }
65
66         \context StaffCombineStaff=one \partcombine StaffCombineStaff
67                 \context StaffCombineThread=one \violaI
68                 \context StaffCombineThread=two \violaII
69 >
70
71 bassiGroup = \context PianoStaff = bassi_group <
72         \context StaffCombineStaff=one {
73                 \clef "bass"; 
74                 \skip 1*314; 
75                 \bar "|."; 
76         }
77         \context StaffCombineStaff=two {
78                 \clef "bass"; 
79                 \skip 1*314; 
80                 \bar "|."; 
81         }
82
83         \context StaffCombineStaff=one \partcombine StaffCombineStaff
84                 \context StaffCombineThread=one \violoncello
85                 \context StaffCombineThread=two \contrabasso
86 >
87
88
89 archiGroup = \context StaffGroup = archi_group <
90         \violiniGroup
91         \violiGroup
92         \bassiGroup
93 >
94
95
96 \score{
97         <
98                 \legniGroup
99                 \ottoniGroup
100                 \timpaniGroup
101                 \archiGroup
102         >
103         \header{
104                 title = "Coriolan";
105                 subtitle = "Ouverture"; 
106                 opus = "Opus 62";
107                 composer = "Ludwig van Beethoven (1770-1827)";
108                 enteredby = "JCN";
109                 copyright = "public domain";
110         }
111         \include "coriolan-paper.ly"
112         \include "coriolan-midi.ly"
113 }
114