]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/volta-multi-staff.ly
Merge branch 'master' of /home/lilydev/git/lily/
[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 \layout { ragged-right= ##t }
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 voltaMusic = \relative c'' {
13   \repeat volta 2
14     c1 
15     \alternative { 
16     d e
17    } 
18
19
20 <<
21   \new StaffGroup <<
22     \context Staff \voltaMusic
23     \new Staff \voltaMusic
24   >>
25   \new StaffGroup <<
26     \new Staff \with { \consists "Volta_engraver" }
27       \voltaMusic
28     \new Staff \voltaMusic
29   >>
30 >>