]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-volta-brackets-to-additional-staves.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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.4"
5
6 \header {
7   lsrtags = "repeats"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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 \"Volta multi staff\".
17
18 "
19   doctitlees = "Añadir corchetes de primera y segunda vez a más pentagramas"
20
21 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
22   texidocde = "
23 Der @code{Volta_engraver} befindet sich im @code{Score}-Kontext und Klammern
24 werden deshalb nur auf dem obersten System dargestellt.  Das kann umgangen
25 werden, indem man den @code{Volta_engraver} zu dem @code{Staff}-Kontext
26 hinzufügt, in dem die Klammern zusätzlichen vorkommen sollen.  Siehe auch
27 das \"Volta multi staff\"-Schnipsel.
28
29 "
30   doctitlede = "Volta-Klammern zu zusätzlichen Systemen hinzufügen"
31 %% Translation of GIT committish: e98b2d804c2a136edfa28adc894bb584f676c884
32   texidocfr = "
33 D'ordinaire, le graveur @code{Volta_engraver} réside dans le contexte
34 @code{Score} ; les crochets précédant une reprise s'impriment donc
35 seulement au-dessus de la portée du haut.  On peut ajuster cela en
36 déplaçant ce graveur vers les contextes de portée (@code{Staff}) qui
37 doivent comporter ces crochets. 
38
39 "
40   doctitlefr = "Ajout du crochet de reprise à d'autres portées"
41
42
43   texidoc = "
44 The @code{Volta_engraver} by default resides in the @code{Score}
45 context, and brackets for the repeat are thus normally only printed
46 over the topmost staff. This can be adjusted by adding the
47 @code{Volta_engraver} to the @code{Staff} context where the brackets
48 should appear; see also the @qq{Volta multi staff} snippet.
49
50 "
51   doctitle = "Adding volta brackets to additional staves"
52 } % begin verbatim
53
54 <<
55   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
56   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
57   \new Staff \with { \consists "Volta_engraver" } { c'2 g' e' a' }
58   \new Staff { \repeat volta 2 { c'1 } \alternative { c' } }
59 >>
60