]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-volta-brackets-to-additional-staves.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / adding-volta-brackets-to-additional-staves.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "repeats"
7  texidoc = "
8 The @code{Volta_engraver} by default resides in the Score context, and
9 brackets for the repeat are thus normally only printed over the topmost
10 staff.  This can be adjusted by adding @code{Volta_engraver} to the
11 Staff context where you want the brackets to appear; see also the
12 \"Volta multi staff\" snippet.
13 " }
14 % begin verbatim
15 <<
16   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
17   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
18   \new Staff \with { \consists Volta_engraver } { c'2 g' e' a' }
19   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
20  >>