]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/volta-multi-staff.ly
Merge branch 'dev/mf2pt1-build' of git://git.sv.gnu.org/lilypond
[lilypond.git] / input / lsr / volta-multi-staff.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 \version "2.11.36"
3 \layout { ragged-right= ##t }
4 \header {
5   doctitle = "Volta multi-staff"
6   lsrtags = "repeats,staff-notation"
7   texidoc = "By adding @code{Volta_engraver}, repeat brackets
8 can be put over staves other than the topmost one in a score."
9 }
10 % begin verbatim
11 vmus = \relative c'' {
12   \repeat volta 2 c1 \alternative { d e } 
13
14
15 <<
16   \new StaffGroup <<
17     \context Staff \vmus
18     \new Staff \vmus
19   >>
20   \new StaffGroup <<
21     \new Staff \with { \consists Volta_engraver }
22       \vmus
23     \new Staff \vmus
24   >>
25 >>