1\version "2.16.0"
2
3\header {
4
5  texidoc = "
6The space between scores containing Staffs and TabStaffs should
7be consistent.  In this example, all of the spacings should be
8equivalent.
9"
10}
11
12\score {
13 { c'4 d' e' f' g'1 }
14 \header {
15  piece = "Title 1"
16 }
17}
18\score {
19 \new TabStaff {
20  c'4 d' e' f' g'1
21 }
22 \header {
23  piece = "Title 2"
24 }
25}
26\score {
27 { c'4 d' e' f' g'1 }
28 \header {
29  piece = "Title 3"
30 }
31}
32