X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fvolta-multi-staff.ly;h=022b46a8e5c6c55b25fb1e38aff9f80c09e17e74;hb=a8c9e8a7ca320ab0df5fd32e717fd62cd7635ce6;hp=b171c518869a6e941e498bc840ef5e40ab6f6777;hpb=a0b2e9cf56fadc0c2c4f23d0e3aa34ba7eaaa0ae;p=lilypond.git diff --git a/input/lsr/volta-multi-staff.ly b/input/lsr/volta-multi-staff.ly index b171c51886..022b46a8e5 100644 --- a/input/lsr/volta-multi-staff.ly +++ b/input/lsr/volta-multi-staff.ly @@ -1,26 +1,36 @@ -%% Do not edit this file; it is auto-generated from input/new +%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. -\version "2.11.38" -\layout { ragged-right= ##t } +\version "2.12.3" + \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." + lsrtags = "repeats, staff-notation" + + 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 + +voltaMusic = \relative c'' { + \repeat volta 2 { + c1 + } + \alternative { + d1 + e + } } -% begin verbatim -vmus = \relative c'' { - \repeat volta 2 c1 \alternative { d 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 >> >>