]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-ties-with-arpeggios.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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.4"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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
22 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
23  texidocde = "
24  Überbindungen werden teilweise benutzt, um Arpeggios zu notieren.  In
25  diesem Fall stehen die übergebundenen Noten nicht unbedingt hintereinander.
26 Das Verhalten kann erreicht werden, indem die @code{tieWaitForNote}-Eigenschaft
27 auf @code{#t} gesetzt wird.  Diese Funktion ist auch sinnvoll, um etwa
28 ein Tremolo mit einem Akkord zu überbinden, kann aber prinzipiell auch
29 für normale Überbindungen eingesetzt werden
30 "
31   doctitlede = "Überbingungen für Arpeggio genutzen"
32
33
34
35 %% Translation of GIT committish: e71f19ad847d3e94ac89750f34de8b6bb28611df
36   texidocfr = "
37 Les liaisons de tenue servent parfois à rendre un accord arpégé. Dans
38 ce cas, les notes liées ne sont pas toutes consécutives. Il faut alors
39 assigner à la propriété @code{tieWaitForNote} la valeur @code{#t}
40 (@emph{true} pour @qq{vrai}).  Cette même méthode peut servir, par
41 exemple, à lier un trémolo à un accord.
42 "
43   doctitlefr = "Liaison de tenue et arpège"
44
45   texidoc = "
46 Ties are sometimes used to write out arpeggios.  In this case, two tied
47 notes need not be consecutive.  This can be achieved by setting the
48 @code{tieWaitForNote} property to @code{#t}.  The same feature is also
49 useful, for example, to tie a tremolo to a chord, but in principle, it
50 can also be used for ordinary consecutive notes.
51
52 "
53   doctitle = "Using ties with arpeggios"
54 } % begin verbatim
55
56 \relative c' {
57   \set tieWaitForNote = ##t
58   \grace { c16[ ~ e ~ g] ~ } <c, e g>2
59   \repeat tremolo 8 { c32 ~ c' ~ } <c c,>1
60   e8 ~ c ~ a ~ f ~ <e' c a f>2
61   \tieUp
62   c8 ~ a
63   \tieDown
64   \tieDotted
65   g8 ~ c g2
66 }
67