]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-volta-brackets-to-additional-staves.ly
Doc-es: pre-merge update of texidoc committishes.
[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   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 %% Translation of GIT committish :<0364058d18eb91836302a567c18289209d6e9706>
20   texidocde = "
21 Der @code{Volta_engraver} befindet sich im @code{Score}-Kontext und Klammern
22 werden deshalb nur auf dem obersten System dargestellt.  Das kann umgangen
23 werden, indem man den @code{Volta_engraver} zu dem @code{Staff}-Kontext
24 hinzufügt, in dem die Klammern zusätzlichen vorkommen sollen.  Siehe auch
25 das \"Volta multi staff\"-Schnipsel.
26
27 "
28   doctitlede = "Volta-Klammern zu zusätzlichen Systemen hinzufügen"
29
30   texidoc = "
31 The @code{Volta_engraver} by default resides in the @code{Score}
32 context, and brackets for the repeat are thus normally only printed
33 over the topmost staff. This can be adjusted by adding the
34 @code{Volta_engraver} to the @code{Staff} context where the brackets
35 should appear; see also the \"Volta multi staff\" snippet.
36
37 "
38   doctitle = "Adding volta brackets to additional staves"
39 } % begin verbatim
40
41 <<
42   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
43   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
44   \new Staff \with { \consists "Volta_engraver" } { c'2 g' e' a' }
45   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
46 >>