]> git.donarmstrong.com Git - lilypond.git/blob - input/coriolan-alto.ly
release: 0.1.13
[lilypond.git] / input / coriolan-alto.ly
1 % remark: still temporarily broken. 
2 %{MudelaHeader
3
4  filename: coriolan-alto.ly
5  title:Ouverture zu Collins Trauerspiel "Coriolan" Opus 62
6  description:  a 5 bar fragment of the alto part
7  composer(s): Ludwig van Beethoven (1770-1792)
8  entered-by: JCN
9  copyright: public domain
10
11  Tested Features:
12 EndMudelaHeader
13 %}
14
15 %
16 % when lily can handle this, i-ll type the other 304 bars 
17 % (maybe even sooner :-)
18 %
19
20 \version "0.1.5";
21
22 alto = \melodic{ 
23         
24         \meter 4/4; 
25         \key bes es as;
26                 
27         \clef "alto";
28         % these are chords (i.e. non-divisi)
29         
30 %30     
31         <       
32                 { \octave  c ;
33                         
34                         [ c8 c-. ] c2.( | 
35 %31
36                         [ ) c8 c-. ] c2.( | 
37 %32
38                         [ ) c8 c-. ] c4. c-. c4( |
39 %33
40                         [ ) c8 c-. ] c4. c-. c4 
41                 \group "+bla";
42                  \stemup[ c16^"div." c16 c16 c16 ] c4 c2 
43                 \group "-";
44                 }
45 %30:2
46                 { 
47                         \octave  'c ;
48                         \textstyle "italic";
49                         % this should be a \dynamic, rather than text
50                         [ c c_"cresc. \ \ - \ \ \ \ - \ \ \ \ - \ \ \ \
51                                 - \ \ \ \ - \ \ \ \ - \ \ \ \ - \ \ \ \
52                                 - \ \ \ \ - \ \ \ \ - \ \ \ \ - \ \ \ \
53                                 - \ \ \ \ - \ \ \ \ -" ] c2.( |  
54                         \textstyle "roman";
55 %31:2
56                         [ ) c8 c-. ] c2.( | 
57 %32:2
58                         [ ) c8 c-. ] c4. c-. c4( | 
59 %33:2
60                         [ ) c8 c-. ] c4. c-. c4 |
61                         \octave c ;
62
63 %34             
64                         \group "+b";
65         % these are two \voices (i.e. divisi)
66         % the c4 and c2, however are really 16th...
67         % we-ll say "simile" for now...
68         % 
69                         \octave  'c ;
70                         \textstyle "italic";
71                         \stemdown
72                         [ as16 \ff as16 as16 as16 ] as4_"simile" as2
73                         \textstyle "roman";
74                         \group "-";
75                 }
76         >
77         
78 }
79
80 \score{
81         \staff{ melodicregs alto }
82         \paper{ 
83                 \unitspace 14\mm
84                 \geometric 1.4
85         }
86 }