X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fbeaming-ternary-metrum.ly;h=ddc3cedf638629ef2f7b60b6a4b0daf1f267307a;hb=589ba7953e92ad4ad793d89291b97d738614408e;hp=8094595ed41e83b0b1d2b35918a6e4b27bccf96c;hpb=d3483d5c5122f7d05bb744aa2fa1712f7ab5901a;p=lilypond.git diff --git a/input/regression/beaming-ternary-metrum.ly b/input/regression/beaming-ternary-metrum.ly index 8094595ed4..ddc3cedf63 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.11.51" + \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] }