]> git.donarmstrong.com Git - lilypond.git/commitdiff
update doc.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 17 Jun 2006 23:12:45 +0000 (23:12 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 17 Jun 2006 23:12:45 +0000 (23:12 +0000)
add beatLength hack.

ChangeLog
input/regression/beaming-ternary-metrum.ly

index 97729c49262874a014d1961837f6054c45d0dcef..3ad7a0569dee450080d5519f23c6649f3feabd70 100644 (file)
--- 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. 
index 50d071ef92976a1eaa05607776e16341f28297fd..b79f75d42d0c12968156e0db4309271f78e73378 100644 (file)
@@ -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] 
 }