]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/volta-multi-staff.ly
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/lilypond...
[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.38"
4 \layout { ragged-right= ##t }
5 \header {
6   lsrtags = "repeats,staff-notation"
7   texidoc = "By adding @code{Volta_engraver}, repeat brackets
8 can be put over staves other than the topmost one in a score."
9   doctitle = "Volta multi-staff"
10 } % begin verbatim
11
12 vmus = \relative c'' {
13   \repeat volta 2 c1 \alternative { d e } 
14
15
16 <<
17   \new StaffGroup <<
18     \context Staff \vmus
19     \new Staff \vmus
20   >>
21   \new StaffGroup <<
22     \new Staff \with { \consists Volta_engraver }
23       \vmus
24     \new Staff \vmus
25   >>
26 >>