]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-chord-partial.ly
* lily/tuplet-bracket.cc (brew_molecule): call after_line_breaking
[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 "2.1.7"
10     \paper { raggedright= ##t }
11
12 \score {
13
14 \notes \context Thread \relative c' {
15   << c~ e \new Thread c' >> 
16   << c e c'  >> 
17 }
18
19
20 \paper {
21 \translator {
22   \ThreadContext
23   \consists "Tie_engraver"
24 }
25 \translator { \VoiceContext
26   \remove "Tie_engraver"
27 }
28 }}
29
30