X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fbeaming-ternary-metrum.ly;h=4af5c8d602a3e8189b7f20df4a9b16365ec8ef5a;hb=bdf808b1c2de11d29e09bb0fb94e83ee9ecc6957;hp=cccd3b14c4be2bcff8d0f91930c2d53f9fb4daaf;hpb=d2e7425b88e579fe53989106965fa13eab551c92;p=lilypond.git diff --git a/input/regression/beaming-ternary-metrum.ly b/input/regression/beaming-ternary-metrum.ly index cccd3b14c4..4af5c8d602 100644 --- a/input/regression/beaming-ternary-metrum.ly +++ b/input/regression/beaming-ternary-metrum.ly @@ -1,14 +1,21 @@ -\version "1.9.8" +\version "2.10.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 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] }