]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/remove-empty-staves-auto-knee.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / remove-empty-staves-auto-knee.ly
diff --git a/input/regression/remove-empty-staves-auto-knee.ly b/input/regression/remove-empty-staves-auto-knee.ly
new file mode 100644 (file)
index 0000000..2b01d27
--- /dev/null
@@ -0,0 +1,48 @@
+\version "2.14.0"
+
+\header {
+  texidoc = "
+RemoveEmptyStaves should keep the pre-existing value of
+@code{auto-knee-gap}.  In this case, the cross-staff beam
+should be between the two staves.
+"
+}
+
+staffMusic = \new StaffGroup {
+  <<
+    \new Staff = "rh" {
+      \relative c' {
+        c1 \break
+        c1 \break
+        c8[ c c c
+        \change Staff = "lh"
+        g, g g g]
+        \change Staff = "rh"
+       c1
+      }
+    }
+    \new Staff = "lh" {
+      \relative c {
+        \clef bass
+        c1
+        R1
+        R1
+       R1
+      }
+    }
+  >>
+}
+
+\score {
+  \staffMusic
+}
+
+\layout {
+  ragged-right = ##t
+  \context {
+    \Staff
+    \override Beam #'auto-knee-gap = #4.5
+    \RemoveEmptyStaves
+  }
+}
+