]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/staff-tweak.ly
c3e06ee4c78976d067f7b6e9558dccf3456c4062
[lilypond.git] / input / regression / staff-tweak.ly
1 \version "2.6.0"
2
3 \header {
4 texidoc = "The staff is a grob (graphical object) which may be adjusted as well, for example, to have 6 thick lines and a slightly large @code{staff-space}.
5 However, beams remain correctly quantized."    
6
7 }
8
9
10 mus =  \relative c' { c4 g' d'8 d d d }
11
12 \score {
13    <<
14     \new Staff {
15         \override Staff.StaffSymbol  #'thickness = #2.0
16         \override Staff.StaffSymbol  #'line-count = #6
17         \override Staff.StaffSymbol  #'staff-space = #1.1
18         \mus
19     }
20     \mus
21   >>
22   \layout  {
23     raggedright = ##t
24   }
25 }
26