]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/beaming-ternary-metrum.ly
Merge commit 'origin' into beamlets2
[lilypond.git] / input / regression / beaming-ternary-metrum.ly
index cccd3b14c4be2bcff8d0f91930c2d53f9fb4daaf..907edf10f43672073725ac0979c9e3246aa61981 100644 (file)
@@ -1,14 +1,21 @@
 
-\version "1.9.8"
+\version "2.12.0"
+
 \header {
-texidoc = "Automatic beaming works also in ternary time sigs."
-}
 
-\score {
-   \notes \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
+  three 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] 
 }