]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-chord.ly
*** empty log message ***
[lilypond.git] / input / regression / tie-chord.ly
1
2 \version "2.6.0"
3 \header{
4   texidoc="
5 When tying chords, the outer ties point outwards, the inner ties
6 point away from the center of the staff. The behavior can be overridden 
7 by setting explicitly the @code{direction} of a @code{TieColumn}.
8 "
9 }
10
11
12 t =  \relative c' {   <c e g> ~ <c e g> }
13
14
15 \context Voice {
16   \t
17   \transpose c g \t
18
19   \override TieColumn  #'direction = #-1
20   \t
21
22 }
23
24