]> git.donarmstrong.com Git - lilypond.git/blob - input/rhythm.ly
release: 0.0.60
[lilypond.git] / input / rhythm.ly
1 %{MudelaHeader
2
3  filename:rhythm.ly
4  title:
5  description: 
6  composers:HWN
7  entered-by:HWN
8  copyright:public domain
9
10  Tested Features: multiple meters, beaming
11 EndMudelaHeader
12 %}
13 \version "0.0.57";
14
15 %
16 %       Ive' got rhythm!
17 %
18 % add any impressive examples here, please
19
20 \version "0.0.57";
21
22 ritme = \staff {
23         melodicregs
24         \melodic{ %\octave ;
25         \partial 8;
26         \meter  4/4;
27         c8                                      |
28         
29         [a8~  a8. a8 a16 a16 a16] c4.           |       % watch the beams!
30          r32 r32 r16 r8 r4 r2                   |
31         \meter   5/16;
32
33         % divide measure in 5 equal parts. Usually it 2+3 or 3+2
34         \grouping  16*5 ;       
35         [c8 c16 c8 ]                            |       % watch THIS!
36          [c16 c16 c16 c16]5/4 |
37         \meter   2/8;
38         c4                              |
39         c4      c4      c4      c4
40         \meter 4/4;
41         c1 c1 c1
42         
43 %       [c16 c16 c16 c16 ]                      |
44 %       [c16 c16 c16 c16 c16 ]                  |
45 %       [c16 c16 c16 c16 c16 ]                  |       
46         
47          }
48         
49 }
50 another = \staff {
51         melodicregs
52         \melodic{ \meter 4/4; 
53                 c1 c1 c1 c4 c4 c4 c4  \meter  4/4; c1 c1 c1
54          }
55 }
56
57 yanother = \staff       { 
58         melodicregs
59         \melodic{ \meter 4/4; 
60                 c1 c1 c1 c4 c4 c4 c4  c1 c1 c1
61          }
62 }
63
64 \score{
65         ritme
66         another
67         yanother
68         
69         \paper{
70                 \unitspace 2\cm
71                 \geometric 1.3
72         }
73 }