]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-volta-brackets-to-additional-staves.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[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.13.1"
4
5 \header {
6   lsrtags = "repeats"
7
8 %% Translation of GIT committish: 00e3a8264e138ad61b4f115a173190d5e9dc7533
9   texidoces = "
10 El grabador @code{Volta_engraver} reside de forma predeterminada
11 dentro del contexto de @code{Score}, y los corchetes de la repetición
12 se imprimen así normalmente sólo encima del pentagrama superior.  Esto
13 se puede ajustar añadiendo el grabador @code{Volta_engraver} al
14 contexto de @code{Staff} en que deban aparecer los corchetes; véase
15 también el fragmento de código \"Volta multi staff\".
16
17 "
18   doctitlees = "Añadir corchetes de primera y segunda vez a más pentagramas"
19
20 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
21   texidocde = "
22 Der @code{Volta_engraver} befindet sich im @code{Score}-Kontext und Klammern
23 werden deshalb nur auf dem obersten System dargestellt.  Das kann umgangen
24 werden, indem man den @code{Volta_engraver} zu dem @code{Staff}-Kontext
25 hinzufügt, in dem die Klammern zusätzlichen vorkommen sollen.  Siehe auch
26 das \"Volta multi staff\"-Schnipsel.
27
28 "
29   doctitlede = "Volta-Klammern zu zusätzlichen Systemen hinzufügen"
30
31   texidoc = "
32 The @code{Volta_engraver} by default resides in the @code{Score}
33 context, and brackets for the repeat are thus normally only printed
34 over the topmost staff. This can be adjusted by adding the
35 @code{Volta_engraver} to the @code{Staff} context where the brackets
36 should appear; see also the \"Volta multi staff\" snippet.
37
38 "
39   doctitle = "Adding volta brackets to additional staves"
40 } % begin verbatim
41
42 <<
43   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
44   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
45   \new Staff \with { \consists "Volta_engraver" } { c'2 g' e' a' }
46   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
47 >>
48