X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=inline;f=input%2Fregression%2Fstaff-tweak.ly;h=b614b827bede0dac0a15debd1bc011a90335a797;hb=4d405ef96a8a62771d7d9a283ff5369a772e89d8;hp=d09efde5b5a6f144ce4f50e62945fe9508a94cb6;hpb=2b4664417d36bed2b408d769e3dfd96732710d54;p=lilypond.git diff --git a/input/regression/staff-tweak.ly b/input/regression/staff-tweak.ly index d09efde5b5..b614b827be 100644 --- a/input/regression/staff-tweak.ly +++ b/input/regression/staff-tweak.ly @@ -1,22 +1,28 @@ -\version "1.7.6" +\version "2.19.21" + \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 { linewidth = -1. - } - } -%% new-chords-done %% +mus = \relative { c'4 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 +>> + + +