]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-ties-with-arpeggios.ly
Docs: reorganize documentation directory structure
[lilypond.git] / Documentation / snippets / using-ties-with-arpeggios.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "rhythms"
7
8 %% Translation of GIT committish: a634a20e0ab2a874ff8bf423e5651139df8733fc
9  doctitlees = "Uso de ligaduras en los arpegios"
10  texidoces = "
11 En ocasiones se usan ligaduras de unión para escribir los arpegios.
12 En este caso, las dos notas ligadas no tienen que ser consecutivas.
13 Esto se puede conseguir estableciendo la propiedad
14 @code{tieWaitForNote} al valor \"verdadero\".  La misma funcionalidad
15 es de utilidad, por ejemplo, para ligar un trémolo a un acorde, pero
16 en principio, también se puede usar para notas normales consecutivas,
17 como se muestra en este ejemplo.
18
19 "
20
21 %% Translation of GIT committish: 6ce7f350682dfa99af97929be1dec6b9f1cbc01a
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