]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-chord-partial.ly
* buildscripts/mf-to-table.py (base): break table every three
[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 "1.7.18"
9
10 \score {
11
12 \notes \context Thread \relative c' {
13   < c-~ e \context Thread = "untied" c' > 
14   < c e c'  > 
15 }
16
17
18 %% comment out New_tie_engraver for lily 1.6
19 \paper {
20 \translator {
21   \ThreadContext
22   \consists "Tie_engraver"
23   \consists "New_tie_engraver"
24 }
25 \translator { \VoiceContext
26   \remove "Tie_engraver"
27   \remove "New_tie_engraver"
28 }
29 }}
30
31