]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/repeats/volta-multi-staff.ly
a6f2e6ba0d18909bd51a21b6b753036205abc42b
[lilypond.git] / input / lsr / repeats / volta-multi-staff.ly
1 \version "2.10.12"
2
3 \header { texidoc = "
4 By setting @code{voltaOnThisStaff}, repeat brackets can be put over
5 staves other than the topmost one in a score. 
6 " }
7
8 \layout {
9   ragged-right = ##t 
10 }
11
12 vmus =  {
13   \repeat volta 2 c1 \alternative { d e } 
14
15
16 \relative c'' <<
17   \new StaffGroup <<
18     \context Staff \vmus
19     \new Staff \vmus
20   >>
21   \new StaffGroup <<
22     \new Staff <<
23       \set Staff.voltaOnThisStaff = ##t
24       \vmus >>
25     \new Staff \vmus
26   >>
27 >>