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