]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/engraving-ties-manually.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / engraving-ties-manually.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "rhythms"
7  texidoc = "
8 Ties may be engraved manually by changing the @code{tie-configuration}
9 property of the @code{TieColumn} object. The first number indicates the
10 distance from the center of the staff in staff-spaces, and the second
11 number indicates the direction (1=up, -1=down).
12 " }
13 % begin verbatim
14 \relative c' {
15   <c e g>2~ <c e g> |
16   \override TieColumn #'tie-configuration =
17     #'((0.0 . 1) (-2.0 . 1) (-4.0 . 1))
18   <c e g>~ <c e g> |
19 }