]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/skyline-horizontal-padding.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / skyline-horizontal-padding.ly
1 \version "2.17.30"
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       \omit Staff.TimeSignature
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 = #3.0
24       }
25     }
26   }
27 }