From: Carl Sorensen Date: Tue, 25 Jan 2011 06:13:54 +0000 (-0700) Subject: Add regression test for issue 674 X-Git-Tag: release/2.13.47-1~19 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=64c748652d39b025e30b8629e56af0215c742002;p=lilypond.git Add regression test for issue 674 --- diff --git a/input/regression/staff-tabstaff-spacing.ly b/input/regression/staff-tabstaff-spacing.ly new file mode 100644 index 0000000000..41e899f954 --- /dev/null +++ b/input/regression/staff-tabstaff-spacing.ly @@ -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" + } +}