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