]> git.donarmstrong.com Git - lilypond.git/blob - input/new/volta-multi-staff.ly
Test of LSR commenting-out.
[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 % LSR: this is a test which should get automatically
11 % LSR: removed from input/lsr/    -gp
12 vmus = \relative c'' {
13   \repeat volta 2 c1 \alternative { d e } 
14
15
16 <<
17   \new StaffGroup <<
18     \context Staff \vmus
19     \new Staff \vmus
20   >>
21   \new StaffGroup <<
22     \new Staff \with { \consists Volta_engraver }
23       \vmus
24     \new Staff \vmus
25   >>
26 >>