X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fmulti-measure-rest-tweaks.ly;h=af157a37c7f320ddcb20a4d3a7cf8db16ee38072;hb=733828c4ac75972c4c470c7eb6780e0d658761f9;hp=f1ef48c275ce3bcc7bfe2abb2fc75b1a0c162f16;hpb=2f320e9722ec20d6f13ec567d007763cc912c5da;p=lilypond.git diff --git a/input/regression/multi-measure-rest-tweaks.ly b/input/regression/multi-measure-rest-tweaks.ly index f1ef48c275..af157a37c7 100644 --- a/input/regression/multi-measure-rest-tweaks.ly +++ b/input/regression/multi-measure-rest-tweaks.ly @@ -2,13 +2,24 @@ texidoc = "Multi-measure rests standard values can be tweaked." } -\version "2.15.0" +\version "2.17.6" + +\markup "Use non-standard multi-measure rests:" \new Staff { - \override MultiMeasureRest #'usable-duration-logs = #'(2 1) - \time 1/4 R4-"Use non-standard multi-measure rests." + \override MultiMeasureRest.usable-duration-logs = #(iota 2 1) + \time 1/4 R4 \time 2/4 R2 } +\markup "Round up to the longer rest:" +\new Staff { + \override MultiMeasureRest.round-up-to-longer-rest = ##t + \time 3/2 R1. + \time 7/2 R\breve.. +} +\markup "Round up to the longer rest only in specified time signatures:" \new Staff { - \override MultiMeasureRest #'round-to-longer-rest = ##t - \time 3/2 R1.-"Round to the longer rest." \time 7/2 R\breve.. + \override MultiMeasureRest.round-up-exceptions = #'((3 . 2)) + \time 3/2 R1. + \time 7/2 R\breve.. + \time 3/2 R1. }