X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fstaff-tweak.ly;h=36e75dba38ee33ab281d4631029dbab241f5e0df;hb=99b6f3aa3558b01c9d4158b19a1f1794c534f89c;hp=16fa8a227eff50fa830da871e52d6677f4e70a03;hpb=b4ee6cee22686157744f382b2fdc4279f147f310;p=lilypond.git diff --git a/input/regression/staff-tweak.ly b/input/regression/staff-tweak.ly index 16fa8a227e..36e75dba38 100644 --- a/input/regression/staff-tweak.ly +++ b/input/regression/staff-tweak.ly @@ -1,24 +1,28 @@ -\version "1.9.8" +\version "2.17.6" + \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." +} -mus = \notes \relative c' { c4 g' d'8 d d d } - -\score { - \notes << - \new Staff \mus - \new Staff \with { - StaffSymbol \set #'thickness = #2.0 - StaffSymbol \set #'line-count = #6 - StaffSymbol \set #'staff-space = #1.1 - } \mus - >> - \paper { - raggedright = ##t - } +\layout { + ragged-right = ##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 +>> + + +