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