]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/page-spacing-staff-group.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / page-spacing-staff-group.ly
diff --git a/input/regression/page-spacing-staff-group.ly b/input/regression/page-spacing-staff-group.ly
new file mode 100644 (file)
index 0000000..ba2552e
--- /dev/null
@@ -0,0 +1,30 @@
+\version "2.14.0"
+
+#(set-default-paper-size "a6")
+
+\book {
+
+  \header {
+    texidoc = "By default, the staves within a StaffGroup are spaced more
+closely than staves not in a StaffGroup."
+  }
+
+  \paper {
+    ragged-last-bottom = ##f
+  }
+
+  <<
+    \new StaffGroup
+    <<
+      \new Staff c'1
+      \new Staff c'1
+      \new Staff c'1
+    >>
+    \new StaffGroup
+    <<
+      \new Staff c'1
+      \new Staff c'1
+      \new Staff c'1
+    >>
+  >>
+}
\ No newline at end of file