blob: 5739294fbfdcdda04dbd73bcd447828e2ee1ccfb (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
%
% Ive' got rhythm!
%
% add any impressive examples here, please
ritme = \staff {
melodicregs
\melodic{ %\octave {c}
\partial {8}
{ 4/4}
c8 |
[a8() a8. a8 a16 a16 a16] c4. | % watch the beams!
r32 r32 r16 r8 r4 r2 |
{ 5/16}
% divide measure in 5 equal parts. Usually it 2+3 or 3+2
\grouping { 5*16 }
[c8 c16 c8 ] | % watch THIS!
[c16 c16 c16 c16]5/4 |
{ 2/8}
c4 |
c4 c4 c4 c4
{4/4}
c1 c1 c1
% [c16 c16 c16 c16 ] |
% [c16 c16 c16 c16 c16 ] |
% [c16 c16 c16 c16 c16 ] |
}
}
another = \staff{ melodicregs
\melodic{ { 4/4}
c1 c1 c1 c4 c4 c4 c4 { 4/4} c1 c1 c1
}
}
yanother = \staff{ melodicregs
\melodic{ { 4/4}
c1 c1 c1 c4 c4 c4 c4 c1 c1 c1
}
}
\score{
ritme
another
yanother
\paper{
\unitspace 2\cm
\geometric 1.3
}
}
|