]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-volta-brackets-to-additional-staves.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "repeats"
7
8   texidoces = "
9 El grabador @code{Volta_engraver} reside de forma predeterminada
10 dentro del contexto de @code{Score}, y los corchetes de la repetición
11 se imprimen así normalmente sólo encima del pentagrama superior.  Esto
12 se puede ajustar añadiendo el grabador @code{Volta_engraver} al
13 contexto de @code{Staff} en que deban aparecer los corchetes; véase
14 también el fragmento de código \"Volta multi staff\".
15
16 "
17   doctitlees = "Añadir corchetes de primera y segunda vez a más pentagramas"
18
19   texidoc = "
20 The @code{Volta_engraver} by default resides in the @code{Score}
21 context, and brackets for the repeat are thus normally only printed
22 over the topmost staff. This can be adjusted by adding the
23 @code{Volta_engraver} to the @code{Staff} context where the brackets
24 should appear; see also the \"Volta multi staff\" snippet.
25
26 "
27   doctitle = "Adding volta brackets to additional staves"
28 } % begin verbatim
29 <<
30   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
31   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
32   \new Staff \with { \consists "Volta_engraver" } { c'2 g' e' a' }
33   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
34 >>