]> git.donarmstrong.com Git - lilypond.git/blob - input/coriolan-alto.ly
2037580f1366d187282b75b8c08c768984d107ba
[lilypond.git] / input / coriolan-alto.ly
1 % Ludwig van Beethoven (1770-1792)
2 %
3 % Opus 62
4 % Ouverture zu Collins Trauerspiel "Coriolan"
5 %
6 % a 5 bar fragment of the alto part
7 %
8 % Copyright (c) 1997 Jan Nieuwenhuizen <jan@digicash.com>
9 %
10 % when lily can handle this, i-ll type the other 304 bars 
11 % (maybe even sooner :-)
12 %
13
14 alto = music { 
15         $
16         \duration{ 8 }
17         \key {bes es as}
18                 
19         \clef "alto"
20         % these are chords (i.e. non-divisi)
21         % that-s why i-d rather type chords, 
22         % but how to type slurs?
23 %30     
24                 {       
25                 \music{ 
26                         [ c c-. ] c2.( | 
27 %31
28                         [ ) c c-. ] c2.( | 
29 %32
30                         [ ) c c-. ] c4. c-. c4( |
31 %33
32                         [ ) c c-. ] c4. c-. c4 
33                 }
34 %30:2
35                 \music{ 
36                         \octave{ ` }
37                         \textstyle "italic"
38                         % this should be a dynamic, rather than text
39                         [ c c_"cresc. \ \ - \ \ \ \ - \ \ \ \ - \ \ \ \
40                                 - \ \ \ \ - \ \ \ \ - \ \ \ \ - \ \ \ \
41                                 - \ \ \ \ - \ \ \ \ - \ \ \ \ - \ \ \ \
42                                 - \ \ \ \ - \ \ \ \ -" ] c2.( |  
43                         \textstyle "roman"
44 %31:2
45                         [ ) c c-. ] c2.( | 
46 %32:2
47                         [ ) c c-. ] c4. c-. c4( | 
48 %33:2
49                         [ ) c c-. ] c4. c-. c4 |
50                         \octave{ }
51                 }
52         }
53 %34
54         % these are two voices (i.e. divisi)
55         % the c4 and c2, however are really 16th...
56         % e.g.: c16*4 and c16*8  or
57         %       [ c4 c2 ]*16 ?
58         % we-ll say "simile" for now...
59         % 
60                 { \multivoice
61                 \music{ \stem{ 1 }[ c16^"div." c16 c16 c16 ] c4 c2 }
62                 \music  { 
63                         \octave{ ` }
64                         \textstyle "italic"
65                         \stem{ -1 } [ as16_"\ff" as16 as16 as16 ] as4_"simile" as2
66                         \textstyle "roman"
67                 }
68         }
69         $
70 }
71
72 score {
73         staff { melodic music { alto }}
74
75         commands { 
76                 meter {4*4} grouping {4*4}
77         }
78         paper { 
79                 unitspace 14mm
80                 geometric 1.4
81         }
82 }