]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/volta-multi-staff-inner-staff.ly
Merge commit 'origin' into beamlets2
[lilypond.git] / input / regression / volta-multi-staff-inner-staff.ly
1 \header {
2   texidoc = "By putting Volta_engraver in a staff context, one can get
3 volta brackets on staves other than the topmost one."
4 }
5
6 \layout {
7   ragged-right = ##t
8
9   \context {
10     \Score
11     \remove "Volta_engraver"
12   }
13 }
14
15 \version "2.12.0"
16
17 vmus =  { \repeat volta 2 c1 \alternative { d e } } 
18
19 \relative c'' <<
20   \new StaffGroup <<
21     \new Staff \vmus
22     \new Staff \vmus
23   >>
24   \new StaffGroup <<
25     \new Staff \with { \consists "Volta_engraver" }
26       \vmus
27     \new Staff \vmus
28   >>
29 >>