]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/modern-tab-clef-scaled.ly
Add newlines at EOF where appropriate.
[lilypond.git] / input / regression / modern-tab-clef-scaled.ly
1 \version "2.14.0"
2
3 \header{ texidoc = "The sans serif style tab clef is automatically adjusted to
4                     different string spacings."
5        }
6
7 guitar = \relative c {
8   c4 d e f
9   e4 d c2
10 }
11
12 \score {
13   <<
14     \new Staff {
15       \clef "treble_8"
16       \guitar
17     }
18     \new TabStaff {
19       \clef "moderntab"
20       \set TabStaff.stringTunings = #guitar-tuning
21       \guitar
22     }
23   >>
24 }
25
26 \score {
27   <<
28     \new Staff {
29       \clef "treble_8"
30       \guitar
31     }
32     \new TabStaff {
33       \clef "moderntab"
34       \set TabStaff.stringTunings = #guitar-tuning
35       \override TabStaff.StaffSymbol #'staff-space = #1.0 % default value is 1.5
36       \guitar
37     }
38   >>
39 }