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