]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/shortening-volta-brackets.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / shortening-volta-brackets.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 De forma predeterminada, los corchetes de primera y segunda vez se
12 trazan encima de los finales alternativos completos, pero es posible
13 acortartlos estableciendo un valor cierto para
14 @code{voltaSpannerDuration}.  En el ejemplo siguiente, el corchete
15 sólo dura un compás, que corresponde a una duración de 3/4.
16
17 "
18   doctitlees = "Shortening volta brackets"
19
20 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
21   texidocde = "
22 Volta-Klammern werden normalerweise über alle Noten der Klammer gezogen, aber
23 es ist möglich sie zu verkürzen.  Hierzu muss
24 @code{voltaSpannerDuration} definiert werden, in dem Beispiel etwa als
25 3/4, sodass die Klammer nur einen Takt dauert.
26
27 "
28   doctitlede = "Volta-Klammern verkürzen"
29 %% Translation of GIT committish: e98b2d804c2a136edfa28adc894bb584f676c884
30   texidocfr = "
31 Les crochets indiquant les fins alternatives s'étalent tout au long ce
32 celle-ci.  On peut les raccourcir en définissant la propriété
33 @code{voltaSpannerDuration}.  Dans l'exemple suivant, le crochet ne se
34 prolonge que sur une mesure à 3/4.
35
36 "
37   doctitlefr = "Diminution de la taille du crochet d'alternative"
38
39
40   texidoc = "
41 By default, the volta brackets will be drawn over all of the
42 alternative music, but it is possible to shorten them by setting
43 @code{voltaSpannerDuration}.  In the next example, the bracket only
44 lasts one measure, which is a duration of 3/4.
45
46 "
47   doctitle = "Shortening volta brackets"
48 } % begin verbatim
49
50 \relative c'' {
51   \time 3/4
52   c4 c c
53   \set Score.voltaSpannerDuration = #(ly:make-moment 3 4)
54   \repeat volta 5 { d4 d d }
55   \alternative {
56     {
57       e4 e e
58       f4 f f
59     }
60     { g4 g g }
61   }
62 }
63