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