]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/skyline-horizontal-padding.ly
Merge branch 'stable/2.16' into staging
[lilypond.git] / input / regression / skyline-horizontal-padding.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc = "
5 The skyline-horizontal-padding property can be set for System
6 in order to keep systems from being spaced too closely together.
7 In this example, the low notes from a system should not be
8 interleaved with the high notes from the next system.
9 "
10 }
11
12 \book {
13   \score {
14     {
15       \override Staff.TimeSignature #'stencil =  ##f
16       \repeat unfold 3 { <c'''-1 e'''-3 g'''-5> c' <c,-1 e,-3 g,-5> c' \break}
17     }
18     \layout {
19       indent = 0
20       ragged-right = ##t
21       \context {
22         \Score
23         \override System #'skyline-horizontal-padding = #1.5
24       }
25     }
26   }
27 }