]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/engraving-ties-manually.ly
Split WWW target in two stages WWW-1 and WWW-2
[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.46"
4
5 \header {
6   lsrtags = "rhythms"
7
8   texidoc = "
9 Ties may be engraved manually by changing the @code{tie-configuration}
10 property of the @code{TieColumn} object. The first number indicates the
11 distance from the center of the staff in staff-spaces, and the second
12 number indicates the direction (1 = up, -1 = down).
13
14 "
15   doctitle = "Engraving ties manually"
16 } % begin verbatim
17 \relative c' {
18   <c e g>2 ~ <c e g> |
19   \override TieColumn #'tie-configuration =
20     #'((0.0 . 1) (-2.0 . 1) (-4.0 . 1))
21   <c e g> ~ <c e g> |
22 }