X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fvolta-multi-staff.ly;h=f6e06a35d42199fe7b5904311fc56b6fe68c0fe1;hb=c6554467b0a9beddf0d7ef12746ae31a25fe36e7;hp=e215a35865f006c1d0021dc9a82b8909c8250ddc;hpb=2d54fb4a885cb851718a7bd5c800f01d6337895f;p=lilypond.git diff --git a/input/lsr/volta-multi-staff.ly b/input/lsr/volta-multi-staff.ly index e215a35865..f6e06a35d4 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.11.62" \header { 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 >> >>