X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=input%2Fregression%2Fbeaming-ternary-metrum.ly;h=ddc3cedf638629ef2f7b60b6a4b0daf1f267307a;hb=589ba7953e92ad4ad793d89291b97d738614408e;hp=475aab238b951f5ef34f50e9cd163f76f68c0a45;hpb=34eb783cd6b1af2fd7cf2c573ec9dc7e9d16e7f7;p=lilypond.git diff --git a/input/regression/beaming-ternary-metrum.ly b/input/regression/beaming-ternary-metrum.ly index 475aab238b..ddc3cedf63 100644 --- a/input/regression/beaming-ternary-metrum.ly +++ b/input/regression/beaming-ternary-metrum.ly @@ -1,14 +1,21 @@ -\version "2.6.0" +\version "2.11.51" + \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 + three 8th notes." + } -\layout { 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] }