]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-dash.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / tie-dash.ly
1 \version "2.14.0"
2 \header {texidoc = "@cindex Tie, dotted, dashed
3 The appearance of ties may be changed from solid to dotted or dashed.
4 "
5
6 \layout{ ragged-right=##t }
7
8
9 \relative c'{
10   c2 ~ c |
11   \tieDotted
12   c2 ~ c |
13   \tieDashed
14   c2 ~ c |
15   \tieHalfDashed
16   c2 ~ c |
17   \tieHalfSolid
18   c2 ~ c |
19   \tieDashPattern #0.4 #2.0
20   c2 ~ c |
21   \once \override Tie #'dash-definition = #'((0 0.25 1 1)
22                                              (0.3 0.7 0.4 0.75)
23                                              (0.75 1.0 1.0 1.0))
24   c2 ~ c |
25   \tieSolid
26   c2 ~ c |
27 }
28
29
30
31
32
33