summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@xs4all.nl>2006-06-17 23:12:45 +0000
committerHan-Wen Nienhuys <hanwen@xs4all.nl>2006-06-17 23:12:45 +0000
commitc2560016bee2aaf7967e490c41bdaf747a01caa9 (patch)
tree4af6dccd2bb447502fd7b7e7c5be25b95bc28bfc
parent79ee93bd2d973c23f0cea05e85d3b31b3d0766ba (diff)
update doc.
add beatLength hack.
-rw-r--r--ChangeLog1
-rw-r--r--input/regression/beaming-ternary-metrum.ly5
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 97729c4926..3ad7a0569d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
2006-06-18 Han-Wen Nienhuys <hanwen@lilypond.org>
* input/regression/beaming-ternary-metrum.ly: update doc.
+ add beatLength hack.
* scm/music-functions.scm (make-time-signature-set): add
standard-beat-grouping.
diff --git a/input/regression/beaming-ternary-metrum.ly b/input/regression/beaming-ternary-metrum.ly
index 50d071ef92..b79f75d42d 100644
--- a/input/regression/beaming-ternary-metrum.ly
+++ b/input/regression/beaming-ternary-metrum.ly
@@ -5,7 +5,8 @@
texidoc = "Automatic beaming works also in ternary time sigs. In
this case, the 8th is a beat, so the 16ths are split into two
- groups."
+ groups. This can be avoided by overriding @code{beatLength} to be 3
+ 8th notes."
}
@@ -14,5 +15,7 @@
\relative c'' {
\time 6/8
c8.[ c16 c16 c16]
+ \set beatLength = #(ly:make-moment 3 8)
+ c8.[ c16 c16 c16]
}