]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/shortening-volta-brackets.ly
lily.git: Rewrite translation markers.
[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: 1d589aa04c20d7711bf662618adbdd6d445db29d
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
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22   texidocde = "
23 Volta-Klammern werden normalerweise über alle Noten der Klammer gezogen, aber
24 es ist möglich sie zu verkürzen.  Hierzu muss
25 @code{voltaSpannerDuration} definiert werden, in dem Beispiel etwa als
26 3/4, sodass die Klammer nur einen Takt dauert.
27
28 "
29   doctitlede = "Volta-Klammern verkürzen"
30
31 %% Translation of GIT committish: a5bde6d51a5c88e952d95ae36c61a5efc22ba441
32   texidocfr = "
33 Les crochets indiquant les fins alternatives s'étalent tout au long ce
34 celle-ci.  On peut les raccourcir en définissant la propriété
35 @code{voltaSpannerDuration}.  Dans l'exemple suivant, le crochet ne se
36 prolonge que sur une mesure à 3/4.
37
38 "
39   doctitlefr = "Diminution de la taille du crochet d'alternative"
40
41
42   texidoc = "
43 By default, the volta brackets will be drawn over all of the
44 alternative music, but it is possible to shorten them by setting
45 @code{voltaSpannerDuration}.  In the next example, the bracket only
46 lasts one measure, which is a duration of 3/4.
47
48 "
49   doctitle = "Shortening volta brackets"
50 } % begin verbatim
51
52 \relative c'' {
53   \time 3/4
54   c4 c c
55   \set Score.voltaSpannerDuration = #(ly:make-moment 3 4)
56   \repeat volta 5 { d4 d d }
57   \alternative {
58     {
59       e4 e e
60       f4 f f
61     }
62     { g4 g g }
63   }
64 }
65