X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fstaff-tweak.ly;h=53b0affb6da88379cc4f392e03f11b35305134eb;hb=90875da23e480d263aecd479d5454b816d47dd8b;hp=397588ffcf31816fa3d92b40682522b999b8f8b5;hpb=3db08de4502e30616808fc348b054d32822e5cc4;p=lilypond.git diff --git a/input/regression/staff-tweak.ly b/input/regression/staff-tweak.ly index 397588ffcf..53b0affb6d 100644 --- a/input/regression/staff-tweak.ly +++ b/input/regression/staff-tweak.ly @@ -1,22 +1,28 @@ -\version "1.7.18" +\version "2.12.0" + \header { -texidoc = "The staff is a grob, and may be adjusted as well: this one - shows a staff with 6 thick line, and a slightly large staffspace. -Beams remain correctly quantized. + 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}. +However, beams remain correctly quantized." -" } -\score { \notes { - \property Score.StaffSymbol \set #'thickness = #2.0 - \property Score.StaffSymbol \set #'line-count = #6 - \property Score.StaffSymbol \set #'staff-space = #1.1 - c'4 g'4 b'8 b'8 b'8 b'8 +\layout { + ragged-right = ##t } - -\paper { raggedright = ##t - } - } +mus = \relative c' { c4 g' d'8 d d d } + + +<< + \new Staff { + \override Staff.StaffSymbol #'thickness = #2.0 + \override Staff.StaffSymbol #'line-count = #6 + \override Staff.StaffSymbol #'staff-space = #1.1 + \mus + } + \mus +>> + +