X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fvolta-multi-staff.ly;h=e9100b0c3a71ae4c6118ce761a9bbbf40b3f0184;hb=b2d3e79a146de7cb2eb2be722a510c0e4fc90fa8;hp=ab9ca031f6a76ef69aea4e1d0b491fb6d5a5f701;hpb=e9bd265943d37689b1a6892217cb6f67bbe69f73;p=lilypond.git diff --git a/input/regression/volta-multi-staff.ly b/input/regression/volta-multi-staff.ly index ab9ca031f6..e9100b0c3a 100644 --- a/input/regression/volta-multi-staff.ly +++ b/input/regression/volta-multi-staff.ly @@ -1,28 +1,22 @@ -#(ly:set-option 'old-relative) \header { - - texidoc = "By setting @code{voltaOnThisStaff}, repeats can be put on more staffs in a score." - + texidoc = "By default, the volta brackets appear only in the topmost staff." } -\version "1.9.1" +\layout { ragged-right = ##t } +\version "2.14.0" -vmus = \notes { \repeat volta 2 c1 \alternative { d e } } +vmus = { \repeat volta 2 c1 \alternative { d e } } + +\relative c'' << + \new StaffGroup << + \new Staff \vmus + \new Staff \vmus + >> + \new StaffGroup << + \new Staff \vmus + \new Staff \vmus + >> +>> -\score { - \notes \relative c'' < - \context StaffGroup = SGA < - \context Staff \vmus - \context Staff = SB \vmus - > - \context StaffGroup = SGB < - \context Staff =SC < - \property Staff.voltaOnThisStaff = ##t - \vmus > - \context Staff = SD \vmus - > - > - \paper { raggedright = ##t } -}