]> git.donarmstrong.com Git - lilypond.git/blob - input/new/volta-multi-staff.ly
Silly necessary hack; Neil will remove when it's safe.
[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,fretted-strings"
5   texidoc = "By adding the @code{Volta_engraver} to the relevant
6 staff, volte can be put over staves other than the topmost
7 one in a score."
8   doctitle = "Volta multi-staff"
9 }
10
11 % LSR: this is a test which should get automatically
12 % LSR: removed from input/lsr/    -gp
13 voltaMusic = \relative c'' {
14   \repeat volta 2
15     c1 
16     \alternative { 
17     d e
18    } 
19
20
21 <<
22   \new StaffGroup <<
23     \context Staff \voltaMusic
24     \new Staff \voltaMusic
25   >>
26   \new StaffGroup <<
27     \new Staff \with { \consists "Volta_engraver" }
28       \voltaMusic
29     \new Staff \voltaMusic
30   >>
31 >>