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