]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-volta-brackets-to-additional-staves.ly
Merge branch 'master' into lilypond/translation
[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.51"
4
5 \header {
6   lsrtags = "repeats"
7
8   texidoc = "
9 The @code{Volta_engraver} by default resides in the @code{Score}
10 context, and brackets for the repeat are thus normally only printed
11 over the topmost staff. This can be adjusted by adding the
12 @code{Volta_engraver} to the @code{Staff} context where the brackets
13 should appear; see also the \"Volta multi staff\" snippet.
14
15 "
16   doctitle = "Adding volta brackets to additional staves"
17 } % begin verbatim
18 <<
19   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
20   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
21   \new Staff \with { \consists "Volta_engraver" } { c'2 g' e' a' }
22   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
23 >>