]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-ties-with-arpeggios.ly
f161cfd76c522312f4b3a27a150f842b1dce830f
[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.39"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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 = "Überbindungen für Arpeggio benutzen"
32
33
34
35 %% Translation of GIT committish: 4da4307e396243a5a3bc33a0c2753acac92cb685
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