]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/volta-multi-staff.ly
Split WWW target in two stages WWW-1 and WWW-2
[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.46"
4 \header {
5   lsrtags = "repeats,staff-notation,fretted-strings"
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     \alternative {
16     d1
17     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 >>