]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/volta-multi-staff.ly
Add a TODO comment re grace note spacing.
[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.36"
4 \layout { ragged-right= ##t }
5 \header {
6   doctitle = "Volta multi-staff"
7   lsrtags = "repeats,staff-notation"
8   texidoc = "By adding @code{Volta_engraver}, repeat brackets
9 can be put over staves other than the topmost one in a score."
10 }
11 % begin verbatim
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 >>