]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/shortening-volta-brackets.ly
6c8f5f0ecbac5b2e69fd0807019e27523fb496d4
[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.16"
5
6 \header {
7   lsrtags = "repeats"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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: a5bde6d51a5c88e952d95ae36c61a5efc22ba441
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