]> git.donarmstrong.com Git - lilypond.git/blob - input/maartje.ly
7755894effe3ce9094a7365cf286a6fd957398ce
[lilypond.git] / input / maartje.ly
1 % The purpose of this file is to demonstrate features of LilyPond; 
2 %
3 % COPYRIGHT: GPL
4 %
5 %
6
7
8
9 ritme = staff {rhythmic
10         music {$
11         c8
12         |[a8() a8. a8 a16 a16 a16] c4.
13                 
14         %[c8( )'a8() c8 c8]% BUG!
15         |c2 c2
16         
17         |[fis16 'dis16( fis16 'dis16 ][fis16) 'dis16 fis16 'dis16]
18         | r32 r32 r16 r8 r4 r2
19         |[c8. c16] [c16 c8.] [c16 c16 c8] [c16 c8 c16]
20
21          c2 c2 c2 c2 c2 c2 c2 c2 c2 c2
22
23         $}
24 }
25
26 melody=
27 staff { melodic
28         music{$
29         c8
30         |r4 r4 r4 r4
31         |'cis2..        r8
32         | r4 r8 r16 r32 r32 
33
34         \duration {4}
35         {
36                 \music { c () `bes [c8 c8] }
37                 \music { 'fis ()'gisis fis8 fis8 }
38                 \music { d () d dis8 dis8 }
39                 \music {  a  () bes eis8 eis8 }
40                 \music { fis () g gis8 gis8 }
41         }
42         { c4 'c4 }
43
44         [d8 e8 'f8 g8]  d8 e8 f8 g8
45         |''fis2
46         | a8 b8 'c8 'd8 |''c8 ```c8 c4 |c4  c4 |c4
47         \duration{ 16 } `b `a `g `f \duration{ 4}
48         
49
50         |c `b `a `g `f `e `d `c ``b ``a ``g ``f ``e ``d ``c
51         $}
52
53         commands {
54                 skip 3:0
55                 key $ fis cis gis $
56                 skip 2:0
57                 key 
58                 skip 5:0
59                 clef "bass"
60         }
61 }
62
63 score {
64         paper {
65                 geometric 1.4
66                 unitspace 3.0 cm
67         }
68         staff { ritme }
69         staff { melody }
70         commands {
71                 meter 4* 4
72                 partial 8
73                 skip 1:2
74                 bar ":|:"
75                 skip 2:0
76                 meter 2* 4
77                 skip 19:0
78         }
79 }
80
81
82