]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/Coriolan/coriolan.ly
release: 1.3.94
[lilypond.git] / mutopia / Coriolan / coriolan.ly
1 %% run this through ly2dvi (afterwards -- urg ly2dvi should tee lily output)
2 %% on my printer, I use dvips -O 5mm,0mm -o x.ps coriolan
3
4 \header{
5 filename =       "coriolan.ly";
6 title =  "Ouverture"; 
7 subtitle = "Coriolan";
8 opus = "Op. 62";
9 composer =       "Ludwig van Beethoven (1770-1827)";
10 enteredby =      "JCN";
11 copyright =      "public domain";
12 }
13
14 \version "1.3.93";
15
16 \include "global.ly"
17 \include "paper16.ly"
18
19 \include "bassi.ly"
20 \include "clarinetti.ly"
21 \include "corni.ly"
22 \include "fagotti.ly"
23 \include "flauti.ly"
24 \include "oboi.ly"
25 \include "timpani.ly"
26 \include "trombe.ly"
27 \include "violi.ly"
28 \include "violino-1.ly"
29 \include "violino-2.ly"
30
31
32 legniGroup = \context StaffGroup = legni_group <
33         \flautiStaff
34         \oboiStaff
35         \clarinettiStaff
36         \fagottiStaff
37 >
38
39 ottoniGroup = \context StaffGroup = otonni_group <
40         \corniStaff
41         \trombeStaff
42 >
43
44 timpaniGroup = \context StaffGroup = timpani_group <
45         \timpaniStaff
46         % Force a staff bracket (?)
47         \context Staff = timpany { \skip 1*314; }
48 >
49
50 violiniGroup = \context GrandStaff = violini_group <
51         \violinoIStaff
52         \violinoIIStaff
53 >
54
55 archiGroup = \context StaffGroup = archi_group <
56         \violiniGroup
57         \violiGroup
58         \bassiGroup
59 >
60
61
62 \score{
63         <
64                 \legniGroup
65                 \ottoniGroup
66                 \timpaniGroup
67                 \archiGroup
68         >
69         \header{
70                 title = "Coriolan";
71                 subtitle = "Ouverture"; 
72                 opus = "Opus 62";
73                 composer = "Ludwig van Beethoven (1770-1827)";
74                 enteredby = "JCN";
75                 copyright = "public domain";
76         }
77         \include "coriolan-paper.ly"
78 %       \include "coriolan-midi.ly"
79 }
80