]> git.donarmstrong.com Git - lilypond.git/blob - input/cadenza.ly
release: 0.1.44
[lilypond.git] / input / cadenza.ly
1 \header{
2 filename =       "cadenza.ly";
3 title =  "Cadenza ad libitum";
4 description =    "Cadenza to Mozart Horn concerto 3";
5 composer =       "unknown";
6 enteredby =      "HWN";
7 copyright =      "public domain";
8 }
9
10 %{
11 Tested Features: cadenza mode
12
13 Ugh.. Wish we had grace notes....  It adds another dimension to this
14 piece of music.  %}
15
16 \version "0.1.9";
17
18
19 cad = \melodic  {
20         \property Score.instrument = "french horn"
21         \type Staff {
22         \cadenza 1;
23         \grouping 1*4;
24         \duration  8;
25         \octave c';
26
27         \clef "violin";
28         c'4.\mf g8
29
30
31         [e'^"accel" () d' c' b]
32         [b() c'] g-\fermata
33                 \bar "empty";
34                         c [c_"rubato" e g c']
35         \octave c'';
36         e4. e [g () f_"rit" e d]
37
38         \duration 16;
39         dis4() e4
40                 \bar "" ;
41                 r8 [c d] [e f g gis]
42         \duration 4;
43         a-> 'f() 'e g
44         f-> 'd() 'cis e
45         \duration 8;    
46         d4^\fermata
47                 \bar "" ;
48
49         r8 'a ['b cis]
50         \duration 16;   [d cis d e]
51         f4() [f e d c]
52         'b4-\turn
53         \octave c'; [2/3 d'8 c'8 a8]1/1
54         g2
55                 \bar "" ;
56         [g c e g] [c' e g c']\octave c''; 
57         [e 'g c e] g4^\fermata 
58                 \bar "" ;
59         [g8.(_"a tempo" e g8. )e]
60         a4. g8 [f8 e8 d8 c8]
61         'g2 d2-\trill
62         c4
63         }}
64 \score {
65         \melodic { \cad }
66         \midi { \tempo 4 = 90; }
67         \paper {
68         }
69 }