]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/using-ties-with-arpeggios.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond
[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.38"
4
5 \header {
6   lsrtags = "rhythms"
7  texidoc = "
8 Ties are sometimes used to write out arpeggios.  In this case, two tied
9 notes need not be consecutive.  This can be achieved by setting the
10 @code{tieWaitForNote} property to true.  The same feature is also
11 useful, for example, to tie a tremolo to a chord, but in principle, it
12 can also be used for ordinary consecutive notes, as demonstrated in
13 this example. 
14 " }
15 % begin verbatim
16 \relative c' {
17   \set tieWaitForNote = ##t
18   \grace { c16[~ e~ g]~ } <c, e g>2
19   \repeat tremolo 8 { c32~ c'~ } <c c,>1
20   e8~ c~ a~ f~ <e' c a f>2
21   \tieUp c8~ a \tieDown \tieDotted g~ c g2
22 }