X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fstaff-tweak.ly;h=f7e525c653d1f5f5301e0825bd79b2a86bbcb727;hb=0e42f1207ae89f4df3c6a21c986c1eaf06a028f0;hp=ae70ac9d5d5c857a205e518e128bb3c04f8d5d80;hpb=70048d99398924e7ca0eb481925145ec243700c5;p=lilypond.git diff --git a/input/regression/staff-tweak.ly b/input/regression/staff-tweak.ly index ae70ac9d5d..f7e525c653 100644 --- a/input/regression/staff-tweak.ly +++ b/input/regression/staff-tweak.ly @@ -1,22 +1,28 @@ -\version "1.9.4" +\version "2.14.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 +>> + +