]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-chord.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[lilypond.git] / input / regression / tie-chord.ly
1
2 \version "2.1.26"
3 \header{
4 texidoc="
5 When tying chords, the outer slurs point outwards, the inner slurs
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 = \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    \override TieColumn  #'direction = #-1
20    \t
21
22   }
23 }
24