]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/multi-measure-rest-tweaks.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / multi-measure-rest-tweaks.ly
1 \header {
2   texidoc = "Multi-measure rests standard values can be tweaked."
3 }
4
5 \version "2.17.6"
6
7 \markup "Use non-standard multi-measure rests:"
8 \new Staff {
9   \override MultiMeasureRest.usable-duration-logs = #(iota 2 1)
10   \time 1/4 R4
11   \time 2/4 R2
12 }
13 \markup "Round up to the longer rest:"
14 \new Staff {
15   \override MultiMeasureRest.round-up-to-longer-rest = ##t
16   \time 3/2 R1.
17   \time 7/2 R\breve..
18 }
19 \markup "Round up to the longer rest only in specified time signatures:"
20 \new Staff {
21   \override MultiMeasureRest.round-up-exceptions = #'((3 . 2))
22   \time 3/2 R1.
23   \time 7/2 R\breve..
24   \time 3/2 R1.
25 }