X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Frhythm.ly;h=df4bfcb4893283169160d8a1040c6bd651b89e7a;hb=c21d49df60cb97801ab33ab8a1bad6f2c81cd820;hp=8205a45d5bee57a68520da3b70da898abeee5708;hpb=56126108b2610f82bc7cafaac8741d1aeba1d34f;p=lilypond.git diff --git a/input/rhythm.ly b/input/rhythm.ly index 8205a45d5b..df4bfcb489 100644 --- a/input/rhythm.ly +++ b/input/rhythm.ly @@ -1,29 +1,31 @@ -% -% Ive' got rhythm! -% -% add any impressive examples here, please +\header{ +filename = "rhythm.ly"; +enteredby = "HWN"; +copyright = "public domain"; +TestedFeatures = "multiple meters, beaming, unsynced bars, userdefd engravers"; +} + + -\version "0.0.57"; +\version "1.3.59"; -ritme = \staff { - melodicregs - \melodic{ %\octave ; +ritme = \notes\transpose c'' { + \time 4/4; \partial 8; - \meter 4/4; c8 | [a8~ a8. a8 a16 a16 a16] c4. | % watch the beams! r32 r32 r16 r8 r4 r2 | - \meter 5/16; + \time 5/16; % divide measure in 5 equal parts. Usually it 2+3 or 3+2 - \grouping 16*5 ; + [c8 c16 c8 ] | % watch THIS! - [c16 c16 c16 c16]5/4 | - \meter 2/8; + \times 5/4 { [ c16 c16 c16 c16] } | + \time 2/8; c4 | c4 c4 c4 c4 - \meter 4/4; + \time 4/4; c1 c1 c1 % [c16 c16 c16 c16 ] | @@ -32,28 +34,42 @@ ritme = \staff { } -} -another = \staff { - melodicregs - \melodic{ \meter 4/4; - c1 c1 c1 c4 c4 c4 c4 \meter 4/4; c1 c1 c1 + +another = + \notes \relative c'' { \time 6/4; + c1. c1. \time 4/4;c4 c4 c4 c4 c1 c1 c1 } -} -yanother = \staff { - melodicregs - \melodic{ \meter 4/4; + +yanother = + \notes{ \time 4/4; c1 c1 c1 c4 c4 c4 c4 c1 c1 c1 } -} + \score{ - ritme - another - yanother + \context StaffGroup < + \ritme + \another + \context RhythmicStaff { + \yanother + } + > \paper{ - \unitspace 2\cm - \geometric 1.3 + + %% remove Timing_engraver and Bar_number_engraver + \translator { + \ScoreContext + \remove "Timing_engraver"; + } + \translator { + \RhythmicStaffContext + \consists "Timing_engraver"; + } + \translator{ + \StaffContext + \consists "Timing_engraver"; + } } }