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