X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fvolta-multi-staff.ly;h=e9100b0c3a71ae4c6118ce761a9bbbf40b3f0184;hb=bff1751d9aaf9fc2f39b878aa86807d3537c7e5a;hp=4603334a4fdd8ff6bc59c7ed5518aaec67ab3f00;hpb=11613b92019bb42418863f43de92287a64878f14;p=lilypond.git diff --git a/input/regression/volta-multi-staff.ly b/input/regression/volta-multi-staff.ly index 4603334a4f..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.2" +\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'' < - \new StaffGroup < - \context Staff \vmus - \new Staff \vmus - > - \new StaffGroup < - \new Staff < - \property Staff.voltaOnThisStaff = ##t - \vmus > - \new Staff \vmus - > - > - \paper { raggedright = ##t } -}