X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fvolta-multi-staff.ly;h=b89cca5af866a57b1192d5b5e3e1e46283776208;hb=33fee1aae93af367e6d2f0a80bef3e1b38eda9eb;hp=77246063964af92f715da55c1847ad05d70f1736;hpb=8dbc847638b24a60ca66110850cc020aeb69b646;p=lilypond.git diff --git a/input/lsr/volta-multi-staff.ly b/input/lsr/volta-multi-staff.ly index 7724606396..b89cca5af8 100644 --- a/input/lsr/volta-multi-staff.ly +++ b/input/lsr/volta-multi-staff.ly @@ -1,26 +1,33 @@ %% Do not edit this file; it is auto-generated from input/new %% This file is in the public domain. -\version "2.11.38" -\layout { ragged-right= ##t } +\version "2.12.0" \header { - doctitle = "Volta multi-staff" lsrtags = "repeats,staff-notation" - texidoc = "By adding @code{Volta_engraver}, repeat brackets -can be put over staves other than the topmost one in a score." + texidoc = "By adding the @code{Volta_engraver} to the relevant +staff, volte can be put over staves other than the topmost +one in a score." + doctitle = "Volta multi-staff" } % begin verbatim -vmus = \relative c'' { - \repeat volta 2 c1 \alternative { d e } -} + +voltaMusic = \relative c'' { + \repeat volta 2 { + c1 + } + \alternative { + d1 + e + } +} << \new StaffGroup << - \context Staff \vmus - \new Staff \vmus + \new Staff \voltaMusic + \new Staff \voltaMusic >> \new StaffGroup << - \new Staff \with { \consists Volta_engraver } - \vmus - \new Staff \vmus + \new Staff \with { \consists "Volta_engraver" } + \voltaMusic + \new Staff \voltaMusic >> >>