Changes the spanner-placement property of FootnoteSpanner to ly:dir
[lilypond/patrick.git] / input / regression / markup-path.ly
blobdeedf54a13ed1632a07b065c515ebee932e0319e
1 \version "2.13.31"
3 \header {
4 texidoc = "
5 The @code{\\path} markup command allows the user to draw
6 arbitrary paths using a simple syntax. The two paths below
7 should be identical.
11 \markup {
12 \column {
13 \path #0.2 #'((moveto 1 1)
14 (lineto 1 6)
15 (curveto 3 8 5 6 1 1)
16 (closepath))
18 \path #0.2 #'((rmoveto 1 1)
19 (rlineto 0 5)
20 (rcurveto 2 2 4 0 0 -5)
21 (closepath))