]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-chord.ly
patch::: 1.3.134.jcn1
[lilypond.git] / input / regression / tie-chord.ly
1 \header{
2 texidoc="
3 When tieing chords, the outer slurs point outwards, the inner slurs
4 point away from the center of the staff.  Override with
5 @code{tieVerticalDirection}.
6 ";
7 }
8
9
10 t =  \notes \relative c' {   <c e g> ~ <c e g> }
11
12         \score { 
13 \notes \context Voice {
14    \t
15    \transpose g' \t
16
17    \property Voice.TieColumn \override #'direction = #-1
18    \t
19
20   }
21 }