]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-ties-with-arpeggios.ly
Doc: update snippet committishes.
[lilypond.git] / Documentation / snippets / using-ties-with-arpeggios.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.10"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971
10  doctitlees = "Uso de ligaduras en los arpegios"
11  texidoces = "
12 En ocasiones se usan ligaduras de unión para escribir los arpegios.
13 En este caso, las dos notas ligadas no tienen que ser consecutivas.
14 Esto se puede conseguir estableciendo la propiedad
15 @code{tieWaitForNote} al valor @code{#t}.  La misma funcionalidad
16 es de utilidad, por ejemplo, para ligar un trémolo a un acorde, pero
17 en principio también se puede usar para notas normales consecutivas.
18
19 "
20
21 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
22  texidocde = "
23  Überbindungen werden teilweise benutzt, um Arpeggios zu notieren.  In
24  diesem Fall stehen die übergebundenen Noten nicht unbedingt hintereinander.
25 Das Verhalten kann erreicht werden, indem die @code{tieWaitForNote}-Eigenschaft
26 auf @code{#t} gesetzt wird.  Diese Funktion ist auch sinnvoll, um etwa
27 ein Tremolo mit einem Akkord zu überbinden, kann aber prinzipiell auch
28 für normale Überbindungen eingesetzt werden
29 "
30   doctitlede = "Überbingungen für Arpeggio genutzen"
31
32
33 %% Translation of GIT committish: e71f19ad847d3e94ac89750f34de8b6bb28611df
34   texidocfr = "
35 Les liaisons de tenue servent parfois à rendre un accord arpégé. Dans
36 ce cas, les notes liées ne sont pas toutes consécutives. Il faut alors
37 assigner à la propriété @code{tieWaitForNote} la valeur @code{#t}
38 (@emph{true} pour @qq{vrai}).  Cette même méthode peut servir, par
39 exemple, à lier un trémolo à un accord.
40 "
41   doctitlefr = "Liaison de tenue et arpège"
42
43   texidoc = "
44 Ties are sometimes used to write out arpeggios.  In this case, two tied
45 notes need not be consecutive.  This can be achieved by setting the
46 @code{tieWaitForNote} property to @code{#t}.  The same feature is also
47 useful, for example, to tie a tremolo to a chord, but in principle, it
48 can also be used for ordinary consecutive notes.
49
50 "
51   doctitle = "Using ties with arpeggios"
52 } % begin verbatim
53
54 \relative c' {
55   \set tieWaitForNote = ##t
56   \grace { c16[ ~ e ~ g] ~ } <c, e g>2
57   \repeat tremolo 8 { c32 ~ c' ~ } <c c,>1
58   e8 ~ c ~ a ~ f ~ <e' c a f>2
59   \tieUp
60   c8 ~ a
61   \tieDown
62   \tieDotted
63   g8 ~ c g2
64 }
65