]> git.donarmstrong.com Git - lilypond.git/blob - input/new/volta-multi-staff.ly
Clean up further input/new
[lilypond.git] / input / new / volta-multi-staff.ly
1 \version "2.11.36"
2 \layout { ragged-right= ##t }
3 \header {
4   doctitle = "Volta multi-staff"
5   lsrtags = "repeats,staff-notation"
6   texidoc = "By adding @code{Volta_engraver}, repeat brackets
7 can be put over staves other than the topmost one in a score."
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 >>