]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/using-ties-with-arpeggios.ly
Fix 546.
[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   texidoc = "
32 Ties are sometimes used to write out arpeggios.  In this case, two tied
33 notes need not be consecutive.  This can be achieved by setting the
34 @code{tieWaitForNote} property to @code{#t}.  The same feature is also
35 useful, for example, to tie a tremolo to a chord, but in principle, it
36 can also be used for ordinary consecutive notes. 
37
38 "
39   doctitle = "Using ties with arpeggios"
40 } % begin verbatim
41
42 \relative c' {
43   \set tieWaitForNote = ##t
44   \grace { c16[ ~ e ~ g] ~ } <c, e g>2
45   \repeat tremolo 8 { c32 ~ c' ~ } <c c,>1
46   e8 ~ c ~ a ~ f ~ <e' c a f>2
47   \tieUp
48   c8 ~ a
49   \tieDown
50   \tieDotted
51   g8 ~ c g2
52 }