]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-arpeggio.ly
* input/regression/override-nest.ly: new file.
[lilypond.git] / input / regression / tie-arpeggio.ly
1 \header
2 {
3
4   texidoc = "when @code{tieWaitForNote} is set, the right-tied note
5  does not have to follow the lef-tied note directly. When
6  @code{tieWaitForNote} is set to false, any tie will erase all pending
7  ties."
8   
9 }
10
11 \version "2.7.13"
12
13 \paper { raggedright =  ##t }
14 \relative {
15   c~ e~ g~ <c, e g>
16   \set tieWaitForNote = ##t
17   c~ e~ g~ <c, e g>
18
19   <c c'> ~
20
21   \set tieWaitForNote = ##f
22   <c e> ~
23   <c e c'>
24 }