]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/beaming-ternary-metrum.ly
Merge branch 'hwn' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / regression / beaming-ternary-metrum.ly
index d75cfdaf58a0924e06c67f60775e44a77131b153..4af5c8d602a3e8189b7f20df4a9b16365ec8ef5a 100644 (file)
@@ -1,14 +1,21 @@
 
-\version "2.3.16"
+\version "2.10.0"
+
 \header {
-texidoc = "Automatic beaming works also in ternary time sigs."
-}
 
-\score {
-    \relative c'' {
-\time 6/8
- c8.[ c16 c16 c16] 
+  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.  This can be avoided by overriding @code{beatLength} to be 3
+  8th notes."
+
 }
-\paper { raggedright = ##t}
+
+\layout { ragged-right = ##t}
+
+\relative c'' {
+  \time 6/8
+  c8.[ c16 c16 c16] 
+  \set beatLength = #(ly:make-moment 3 8)
+  c8.[ c16 c16 c16] 
 }