]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-chord-partial.ly
* scm/bass-figure.scm (make-bass-figure-markup): add
[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     \paper { raggedright= ##t }
10
11 \score {
12
13 \notes \context Thread \relative c' {
14   < c-~ e \context Thread = "untied" c' > 
15   < c e c'  > 
16 }
17
18
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