diff options
author | Carl Sorensen <c_sorensen@byu.edu> | 2011-01-24 23:13:54 -0700 |
---|---|---|
committer | Carl Sorensen <c_sorensen@byu.edu> | 2011-01-24 23:13:54 -0700 |
commit | 64c748652d39b025e30b8629e56af0215c742002 (patch) | |
tree | 358151ac2dbc01a9c9f79d8c67ae501682e01c6d | |
parent | 4c5a7b177c95eea78231aad923c6bd6b75f6ecb1 (diff) |
Add regression test for issue 674
-rw-r--r-- | input/regression/staff-tabstaff-spacing.ly | 31 |
1 files changed, 31 insertions, 0 deletions
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" + } +} |