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