]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-volta-brackets-to-additional-staves.ly
c2a04a0deb35e12226a17e3dd39403fb25501b32
[lilypond.git] / Documentation / snippets / adding-volta-brackets-to-additional-staves.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "repeats"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 El grabador @code{Volta_engraver} reside de forma predeterminada
12 dentro del contexto de @code{Score}, y los corchetes de la repetición
13 se imprimen así normalmente sólo encima del pentagrama superior.  Esto
14 se puede ajustar añadiendo el grabador @code{Volta_engraver} al
15 contexto de @code{Staff} en que deban aparecer los corchetes; véase
16 también el fragmento de código @qq{Volta multi staff}.
17
18 "
19   doctitlees = "Añadir corchetes de primera y segunda vez a más pentagramas"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Der @code{Volta_engraver} befindet sich im @code{Score}-Kontext und Klammern
25 werden deshalb nur auf dem obersten System dargestellt.  Das kann umgangen
26 werden, indem man den @code{Volta_engraver} zu dem @code{Staff}-Kontext
27 hinzufügt, in dem die Klammern zusätzlichen vorkommen sollen.  Siehe auch
28 das \"Volta multi staff\"-Schnipsel.
29
30 "
31   doctitlede = "Volta-Klammern zu zusätzlichen Systemen hinzufügen"
32
33 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
34   texidocfr = "
35 D'ordinaire, le graveur @code{Volta_engraver} réside dans le contexte
36 @code{Score} ; les crochets précédant une reprise s'impriment donc
37 seulement au-dessus de la portée du haut.  On peut ajuster cela en
38 déplaçant ce graveur vers les contextes de portée (@code{Staff}) qui
39 doivent comporter ces crochets.
40
41 "
42   doctitlefr = "Ajout du crochet de reprise à d'autres portées"
43
44
45   texidoc = "
46 The @code{Volta_engraver} by default resides in the @code{Score}
47 context, and brackets for the repeat are thus normally only printed
48 over the topmost staff. This can be adjusted by adding the
49 @code{Volta_engraver} to the @code{Staff} context where the brackets
50 should appear; see also the @qq{Volta multi staff} snippet.
51
52 "
53   doctitle = "Adding volta brackets to additional staves"
54 } % begin verbatim
55
56 <<
57   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
58   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
59   \new Staff \with { \consists "Volta_engraver" } { c'2 g' e' a' }
60   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
61 >>
62