]> git.donarmstrong.com Git - lilypond.git/commitdiff
Add regression test for issue 674
authorCarl Sorensen <c_sorensen@byu.edu>
Tue, 25 Jan 2011 06:13:54 +0000 (23:13 -0700)
committerCarl Sorensen <c_sorensen@byu.edu>
Tue, 25 Jan 2011 06:13:54 +0000 (23:13 -0700)
input/regression/staff-tabstaff-spacing.ly [new file with mode: 0644]

diff --git a/input/regression/staff-tabstaff-spacing.ly b/input/regression/staff-tabstaff-spacing.ly
new file mode 100644 (file)
index 0000000..41e899f
--- /dev/null
@@ -0,0 +1,31 @@
+\version "2.13.47"
+
+\header {
+
+  texidoc = "
+The space between scores containing Staffs and TabStaffs should
+be consistent.  In this example, all of the spacings should be
+equivalent.
+"
+}
+
+\score {
+ { c'4 d' e' f' g'1 }
+ \header {
+  piece = "Title 1"
+ }
+}
+\score {
+ \new TabStaff {
+  c'4 d' e' f' g'1
+ }
+ \header {
+  piece = "Title 2"
+ }
+}
+\score {
+ { c'4 d' e' f' g'1 }
+ \header {
+  piece = "Title 3"
+ }
+}