lilypond-1.1.63
[lilypond.git] / input / rhythm.ly
bloba3217d5daf82de15227c1d91dd0160c389d2694c
1 \header{
2 filename = "rhythm.ly";
3 enteredby = "HWN";
4 copyright = "public domain";
5 TestedFeatures = "multiple meters, beaming, unsynced bars, userdefd engravers";
10 \version "1.1.52";
12 ritme = \notes\transpose c'' {
13 \time 4/4;
14 \partial 8;
15 c8 |
17 [a8~ a8. a8 a16 a16 a16] c4. | % watch the beams!
18 r32 r32 r16 r8 r4 r2 |
19 \time 5/16;
21 % divide measure in 5 equal parts. Usually it 2+3 or 3+2
23 [c8 c16 c8 ] | % watch THIS!
24 \times 5/4 { [ c16 c16 c16 c16] } |
25 \time 2/8;
26 c4 |
27 c4 c4 c4 c4
28 \time 4/4;
29 c1 c1 c1
31 % [c16 c16 c16 c16 ] |
32 % [c16 c16 c16 c16 c16 ] |
33 % [c16 c16 c16 c16 c16 ] |
38 another =
39 \notes \relative c'' { \time 6/4;
40 c1. c1. \time 4/4;c4 c4 c4 c4 c1 c1 c1
44 yanother =
45 \notes{ \time 4/4;
46 c1 c1 c1 c4 c4 c4 c4 c1 c1 c1
50 \score{
51 \context StaffGroup <
52 \ritme
53 \another
54 \context RhythmicStaff {
55 \yanother
59 \paper{
61 %% remove Timing_engraver and Bar_number_engraver
62 \translator {
63 \ScoreContext
64 \remove "Timing_engraver";
66 \translator {
67 \RhythmicStaffContext
68 \consists "Timing_engraver";
70 \translator{
71 \StaffContext
72 \consists "Timing_engraver";