X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fbeaming-ternary-metrum.ly;h=9aeaa004a912ca9b660217877217182d31d47963;hb=5206d86a9de2bd8bd480940fb5c861d8bd0b17c2;hp=ec048213460a163e953e2651e468e85d4526a039;hpb=3db08de4502e30616808fc348b054d32822e5cc4;p=lilypond.git diff --git a/input/regression/beaming-ternary-metrum.ly b/input/regression/beaming-ternary-metrum.ly index ec04821346..9aeaa004a9 100644 --- a/input/regression/beaming-ternary-metrum.ly +++ b/input/regression/beaming-ternary-metrum.ly @@ -1,13 +1,21 @@ -\version "1.7.18" + +\version "2.10.0" + \header { -texidoc = "automatic beaming also works in ternary time sigs." -} -\score { - \notes \context Staff { -\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] }