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