]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/skyline-horizontal-padding.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / skyline-horizontal-padding.ly
diff --git a/input/regression/skyline-horizontal-padding.ly b/input/regression/skyline-horizontal-padding.ly
new file mode 100644 (file)
index 0000000..194e8ec
--- /dev/null
@@ -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'''-1 e'''-3 g'''-5> c' <c,-1 e,-3 g,-5> c' \break}
+    }
+    \layout {
+      indent = 0
+      ragged-right = ##t
+      \context {
+        \Score
+       \override System #'skyline-horizontal-padding = #1.5
+      }
+    }
+  }
+}