From: John Mandereau Date: Sat, 8 Dec 2007 17:35:32 +0000 (+0100) Subject: Fix and move volta-multi-staff.ly X-Git-Tag: release/2.11.36-1~17 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5f047c536e303494f88e931f8371d919772cf2a1;p=lilypond.git Fix and move volta-multi-staff.ly --- diff --git a/input/lsr/repeats/volta-multi-staff.ly b/input/lsr/repeats/volta-multi-staff.ly deleted file mode 100644 index a59b9a8b7d..0000000000 --- a/input/lsr/repeats/volta-multi-staff.ly +++ /dev/null @@ -1,28 +0,0 @@ -%% Do not edit this file; it is auto-generated from LSR! -\version "2.10.12" - -\header { texidoc = " -By setting @code{voltaOnThisStaff}, repeat brackets can be put over -staves other than the topmost one in a score. -" } - -\layout { - ragged-right = ##t -} - -vmus = { - \repeat volta 2 c1 \alternative { d e } -} - -\relative c'' << - \new StaffGroup << - \context Staff \vmus - \new Staff \vmus - >> - \new StaffGroup << - \new Staff << - \set Staff.voltaOnThisStaff = ##t - \vmus >> - \new Staff \vmus - >> ->> diff --git a/input/new/pitches/volta-multi-staff.ly b/input/new/pitches/volta-multi-staff.ly new file mode 100644 index 0000000000..fdda342f7c --- /dev/null +++ b/input/new/pitches/volta-multi-staff.ly @@ -0,0 +1,22 @@ +\header { + texidoc = "By adding @code{Volta_engraver}, repeat brackets + can be put over staves other than the topmost one in a score." +} + +\version "2.11.36" + +vmus = { + \repeat volta 2 c1 \alternative { d e } +} + +\relative c'' << + \new StaffGroup << + \context Staff \vmus + \new Staff \vmus + >> + \new StaffGroup << + \new Staff \with { \consists Volta_engraver } + \vmus + \new Staff \vmus + >> +>>