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