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