From de16aae928c9d55f7f6688f73affdc7195fa8117 Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Tue, 25 Sep 2007 14:12:40 -0700 Subject: [PATCH] Added rhythms headword. --- Documentation/user/rhythms.itely | 3 + input/manual/rhythms-headword.ly | 113 +++++++++++++++++++++++++++++++ 2 files changed, 116 insertions(+) create mode 100644 input/manual/rhythms-headword.ly diff --git a/Documentation/user/rhythms.itely b/Documentation/user/rhythms.itely index 284e016388..1f47fdb978 100644 --- a/Documentation/user/rhythms.itely +++ b/Documentation/user/rhythms.itely @@ -11,6 +11,9 @@ This section discusses rhythms, durations, and bars. +@lilypondfile[ragged-right,line-width=16\cm,staffsize=16,quote] +{rhythms-headword.ly} + @menu * Writing rhythms:: * Writing rests:: diff --git a/input/manual/rhythms-headword.ly b/input/manual/rhythms-headword.ly new file mode 100644 index 0000000000..f1ea438455 --- /dev/null +++ b/input/manual/rhythms-headword.ly @@ -0,0 +1,113 @@ +\version "2.11.33" + +\layout { + \context { \Score + \override NonMusicalPaperColumn #'line-break-system-details = + #'((alignment-offsets . (0 -14 -32 -46))) + } +} + +\new Score << + \set Score.proportionalNotationDuration = #(ly:make-moment 1 96) + \set Score.autoBeaming = ##f + \set Score.tupletFullLength = ##t + \override Score.TupletBracket #'staff-padding = #5 + \new StaffGroup << + \new RhythmicStaff { + \time 4/8 + c64 [ + c64 + c16 + c64 + c64 + c64 + c64 + c16 + c64 + c64 ] + c64 [ + \set stemLeftBeamCount = #4 + \set stemRightBeamCount = #4 + c64 + \set stemLeftBeamCount = #4 + \set stemRightBeamCount = #3 + c64 + c32. + c64 + c64 + c64 + c64 + c64 + \set stemRightBeamCount = #4 + c64 + \set stemLeftBeamCount = #4 + \set stemRightBeamCount = #3 + c64 + \set stemRightBeamCount = #2 + c32. + \time 1/8 + \set stemLeftBeamCount = #2 + c64 + c64 + c16 + c64 + c64 ] + } + \new RhythmicStaff { + \set stemLeftBeamCount = #0 + c16 [ ] + r8. + \times 2/3 { + c16 [ + c16 + c16 + c16 + c16 + c16 + } + \times 2/3 { + c32 + c32 + c32 + c32 + c32 ] + r32 + } + } + >> + \new StaffGroup << + \new RhythmicStaff { + \times 4/5 { + \set stemLeftBeamCount = #0 + c32 [ ] + r16. + \set stemLeftBeamCount = #2 + c16. [ + c32 + \set stemRightBeamCount = #3 + c32 ] + r32 + } + \times 8/11 { + c16. [ + c8 + c8 ] + } + c8 + } + \new RhythmicStaff { + \times 2/3 { + c16 [ + c8. ] + c4 + r4 + } + \times 4/5 { + r16 + \set stemLeftBeamCount = #2 + \set stemRightBeamCount = #0 + c16. [ ] + } + } + >> +>> -- 2.39.5