]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-chord-partial.ly
Massive changes - see ChangeLog.
[lilypond.git] / input / regression / tie-chord-partial.ly
1 #(ly:set-option 'old-relative)
2 \header {
3
4 texidoc = "Tieing only parts of chords is possible. It requires
5 putting the Tie engraver at Thread level, and redirecting untied notes
6 to a different thread."
7
8 }
9 \version "1.9.0"
10     \paper { raggedright= ##t }
11
12 \score {
13
14 \notes \context Thread \relative c' {
15   < c-~ e \context Thread = "untied" c' > 
16   < c e c'  > 
17 }
18
19
20 \paper {
21 \translator {
22   \ThreadContext
23   \consists "Tie_engraver"
24   \consists "New_tie_engraver"
25 }
26 \translator { \VoiceContext
27   \remove "Tie_engraver"
28   \remove "New_tie_engraver"
29 }
30 }}
31
32