]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/volta-multi-staff.ly
LSR: Update.
[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.13.0"
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
13 voltaMusic = \relative c'' {
14   \repeat volta 2 {
15     c1
16   }
17   \alternative {
18     d1
19     e
20   }
21 }
22
23 <<
24   \new StaffGroup <<
25     \new Staff \voltaMusic
26     \new Staff \voltaMusic
27   >>
28   \new StaffGroup <<
29     \new Staff \with { \consists "Volta_engraver" }
30       \voltaMusic
31     \new Staff \voltaMusic
32   >>
33 >>