]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/engraving-ties-manually.ly
Imported Upstream version 2.16.0
[lilypond.git] / Documentation / snippets / engraving-ties-manually.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.16.0"
8
9 \header {
10   lsrtags = "rhythms"
11
12   texidoc = "
13 Ties may be engraved manually by changing the @code{tie-configuration}
14 property of the @code{TieColumn} object. The first number indicates the
15 distance from the center of the staff in half staff-spaces, and the
16 second number indicates the direction (1 = up, -1 = down).
17
18 "
19   doctitle = "Engraving ties manually"
20 } % begin verbatim
21
22
23 \relative c' {
24   <c e g>2~ <c e g>
25   \override TieColumn #'tie-configuration =
26     #'((0.0 . 1) (-2.0 . 1) (-4.0 . 1))
27   <c e g>2~ <c e g>
28 }