]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/staff-tweak.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / staff-tweak.ly
1 \version "2.16.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 \layout  {
10   ragged-right = ##t
11 }
12
13
14 mus =  \relative c' { c4 g' d'8 d d d }
15
16
17 <<
18   \new Staff {
19     \override Staff.StaffSymbol  #'thickness = #2.0
20     \override Staff.StaffSymbol  #'line-count = #6
21     \override Staff.StaffSymbol  #'staff-space = #1.1
22     \mus
23   }
24   \mus
25 >>
26
27
28