]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/volta-multi-staff.ly
Doc-es: pre-merge update of texidoc committishes.
[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 %% Note: this file works from version 2.12.0
4 \version "2.12.0"
5 \header {
6   lsrtags = "repeats,staff-notation"
7   texidoc = "By adding the @code{Volta_engraver} to the relevant
8 staff, volte can be put over staves other than the topmost
9 one in a score."
10   doctitle = "Volta multi-staff"
11 } % begin verbatim
12
13
14 voltaMusic = \relative c'' {
15   \repeat volta 2 {
16     c1
17   }
18   \alternative {
19     d1
20     e
21   }
22 }
23
24 <<
25   \new StaffGroup <<
26     \new Staff \voltaMusic
27     \new Staff \voltaMusic
28   >>
29   \new StaffGroup <<
30     \new Staff \with { \consists "Volta_engraver" }
31       \voltaMusic
32     \new Staff \voltaMusic
33   >>
34 >>