X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fbeaming-ternary-metrum.ly;h=4af5c8d602a3e8189b7f20df4a9b16365ec8ef5a;hb=adfbae206ae6b57fc5ecbbab1f60f97b5fcfb100;hp=040b6a917a02e81bc1a35f45d28462aba3ae79c1;hpb=34881554afeaf03a55a3a983caf9cfeaaf3ea060;p=lilypond.git diff --git a/input/regression/beaming-ternary-metrum.ly b/input/regression/beaming-ternary-metrum.ly index 040b6a917a..4af5c8d602 100644 --- a/input/regression/beaming-ternary-metrum.ly +++ b/input/regression/beaming-ternary-metrum.ly @@ -1,14 +1,21 @@ -\version "2.3.22" +\version "2.10.0" + \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 3 + 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] }