From c24bfce43ddff6e8e2bd8f8a13fec0de090a4ef9 Mon Sep 17 00:00:00 2001 From: Neil Puttock Date: Wed, 5 Aug 2009 22:53:31 +0100 Subject: [PATCH] Fix broken beaming rules. --- scm/beam-settings.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scm/beam-settings.scm b/scm/beam-settings.scm index def8949abd..a0ab77ae59 100644 --- a/scm/beam-settings.scm +++ b/scm/beam-settings.scm @@ -13,7 +13,7 @@ ;;; ;;; where ;;; -;;; time-signature = time signature fraction (pair of numbers, (4 .4) ) +;;; time-signature = time signature fraction (pair of numbers, (4 . 4) ) ;;; function = 'end or 'subdivide (possibly implement 'begin in the future) ;;; beam-type = '* or (numerator . denominator); e.g. (1 . 16) ;;; NOTE: numerator is kept in beam-type because of @@ -49,10 +49,10 @@ ;; default: end beams on beats ;; group 1/8 note beams on measure (((3 . 4) end) .((* . (3)) - ((1 16) . (4 4 4)) - ((1 32) . (8 8 8)) - ((1 64) . (16 16 16)) - ((1 128) . (32 32 32)))) + ((1 . 16) . (4 4 4)) + ((1 . 32) . (8 8 8)) + ((1 . 64) . (16 16 16)) + ((1 . 128) . (32 32 32)))) ;; in 3 8 and 3 16 time time: ;; default: group on 3 @@ -101,7 +101,7 @@ ;; end beams with 32nd notes each 1 8 beat (((6 . 8) end) . ((* . (3 3)) - ((6 . 8) . (4 4 4 4 4 4)))) + ((1 . 32) . (4 4 4 4 4 4)))) ;; in 6 16 time: ;; default: group at 3 16 -- 2.39.5