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