X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fmeasure-grouping.ly;h=5fa0b8723bc702aa86089d0fd95764d50068927b;hb=84ad4d280942a37859d45c8fce9d52dd34c10972;hp=6662a20f4a173d659be14f7c21d7aed477a42248;hpb=aeffdc00640754855d3ace4fda106693adb62eb6;p=lilypond.git diff --git a/input/regression/measure-grouping.ly b/input/regression/measure-grouping.ly index 6662a20f4a..5fa0b8723b 100644 --- a/input/regression/measure-grouping.ly +++ b/input/regression/measure-grouping.ly @@ -2,32 +2,32 @@ \header { - texidoc = "The @code{Measure_grouping_engraver} adds triangles and -brackets above beats when you set beatGrouping. " + texidoc = "The @code{Measure_grouping_engraver} adds triangles and +brackets above beats when the beats of a time signature are grouped. " } -\version "2.1.7" +\version "2.16.0" +\layout { + ragged-right = ##t +} %% TODO: should have 2/4 + 5/8 time sig style. -\score { \notes -\context Staff - \relative c' { - #(set-time-signature 2 4) - c8 a'4 a8~ - #(set-time-signature 5 8 '(3 2)) - a8 bes4 r8 bes8-> - \time 2/4 - c,8 g'4 g8~ - #(set-time-signature 5 8 '(3 2)) - g8 a4 g a4.-> - } - \paper { - raggedright = ##t - \translator { \StaffContext - \consists "Measure_grouping_engraver" - } - } - } + +\context Staff \with { + \consists "Measure_grouping_engraver" + } + +\relative c' { + \time 2/4 + c8 a'4 a8~ + \time #'(3 2) 5/8 + a8 bes4 r8 bes8-> + \time 2/4 + c,8 g'4 g8~ + \time #'(3 2) 5/8 + g8 a4 g a4.-> +} +