]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/using-ties-with-arpeggios.ly
Merge master into nested-bookparts
[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.11.62"
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   texidoc = "
20 Ties are sometimes used to write out arpeggios.  In this case, two tied
21 notes need not be consecutive.  This can be achieved by setting the
22 @code{tieWaitForNote} property to \"true\".  The same feature is also
23 useful, for example, to tie a tremolo to a chord, but in principle, it
24 can also be used for ordinary consecutive notes, as demonstrated in
25 this example. 
26
27 "
28   doctitle = "Using ties with arpeggios"
29 } % begin verbatim
30 \relative c' {
31   \set tieWaitForNote = ##t
32   \grace { c16[~ e~ g]~ } <c, e g>2
33   \repeat tremolo 8 { c32~ c'~ } <c c,>1
34   e8~ c~ a~ f~ <e' c a f>2
35   \tieUp c8~ a \tieDown \tieDotted g~ c g2
36 }