]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-ties-with-arpeggios.ly
6ac194eefa5b376824d771d336ff71e694e2686e
[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.16"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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: 4da4307e396243a5a3bc33a0c2753acac92cb685
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