X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fskyline-horizontal-padding.ly;fp=input%2Fregression%2Fskyline-horizontal-padding.ly;h=194e8ec765973ffee467abf2029f2834e98fc673;hb=e90f0536f9be39ada0bef0aeb0d275dec3b2fb5b;hp=0000000000000000000000000000000000000000;hpb=a8c9e8a7ca320ab0df5fd32e717fd62cd7635ce6;p=lilypond.git diff --git a/input/regression/skyline-horizontal-padding.ly b/input/regression/skyline-horizontal-padding.ly new file mode 100644 index 0000000000..194e8ec765 --- /dev/null +++ b/input/regression/skyline-horizontal-padding.ly @@ -0,0 +1,27 @@ +\version "2.14.0" + +\header { + texidoc = " +The skyline-horizontal-padding property can be set for System +in order to keep systems from being spaced too closely together. +In this example, the low notes from a system should not be +interleaved with the high notes from the next system. +" +} + +\book { + \score { + { + \override Staff.TimeSignature #'stencil = ##f + \repeat unfold 3 { c' c' \break} + } + \layout { + indent = 0 + ragged-right = ##t + \context { + \Score + \override System #'skyline-horizontal-padding = #1.5 + } + } + } +}