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