]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/staff-tabstaff-spacing.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / staff-tabstaff-spacing.ly
1 \version "2.14.0"
2
3 \header {
4
5   texidoc = "
6 The space between scores containing Staffs and TabStaffs should
7 be consistent.  In this example, all of the spacings should be
8 equivalent.
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 }