]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/volta-multi-staff.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / volta-multi-staff.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 \version "2.11.62"
4 \header {
5   lsrtags = "repeats,staff-notation"
6   texidoc = "By adding the @code{Volta_engraver} to the relevant
7 staff, volte can be put over staves other than the topmost
8 one in a score."
9   doctitle = "Volta multi-staff"
10 } % begin verbatim
11
12 voltaMusic = \relative c'' {
13   \repeat volta 2 {
14     c1
15   }
16   \alternative {
17     d1
18     e
19   }
20 }
21
22 <<
23   \new StaffGroup <<
24     \new Staff \voltaMusic
25     \new Staff \voltaMusic
26   >>
27   \new StaffGroup <<
28     \new Staff \with { \consists "Volta_engraver" }
29       \voltaMusic
30     \new Staff \voltaMusic
31   >>
32 >>