]> git.donarmstrong.com Git - lilypond.git/blob - input/rhythm.ly
a321ca34a74da7cf90e4a9a3a62f1c859e717f9d
[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
15
16
17 \version "0.1.0";
18
19 ritme = \melodic{ %\octave ;
20         \partial 8;
21         \octave c';
22         \meter  4/4;
23         c8                                      |
24         
25         [a8~  a8. a8 a16 a16 a16] c4.           |       % watch the beams!
26          r32 r32 r16 r8 r4 r2                   |
27         \meter   5/16;
28
29         % divide measure in 5 equal parts. Usually it 2+3 or 3+2
30         \grouping  16*5 ;       
31         [c8 c16 c8 ]                            |       % watch THIS!
32          [5/4 c16 c16 c16 c16]1/1 |
33         \meter   2/8;
34         c4                              |
35         c4      c4      c4      c4
36         \meter 4/4;
37         c1 c1 c1
38         
39 %       [c16 c16 c16 c16 ]                      |
40 %       [c16 c16 c16 c16 c16 ]                  |
41 %       [c16 c16 c16 c16 c16 ]                  |       
42         
43          }
44         
45
46 another = 
47         \melodic{ \meter 4/4; 
48                 c1.  c1. c4 c4 c4 c4  \meter  4/4; c1 c1 c1
49          }
50
51
52 yanother = 
53         \melodic{ \meter 4/4; 
54                 c1 c1 c1 c4 c4 c4 c4  c1 c1 c1
55          }
56
57
58 \score{
59          < \multi 3;
60                 \ritme
61                 \another
62                 \yanother
63         >
64         
65         \paper{
66                 unitspace =2.0\cm;
67                 geometric =1.6;
68         }
69 }