Thank you, Pierre! That works wonderfully! I had attempted something
similar, but kept getting the gap which your use of \hspace fixes.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user
2014-05-01 0:22 GMT+02:00 Kate Sekula :
> I am trying to create a text span solid line that ends with just 1/2 of an
> arrowhead on the right side.
>
Try :
\version "2.18.2"
mySpan = {
\once\override TextSpanner.style = #'line
\once\override TextSpanner.
And of course:
samplePath =
#
"0 0 moveto
2 0 lineto
0 1 lineto
closepath
fill
stroke"
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user
\override TextSpanner.bound-details.right.text = \markup { \postscript
#samplePath }
--Karol
> I am trying to create a text span solid line that ends with just 1/2 of an
> arrowhead on the right side. Is there a way to set a graphic, something
> simple like ...
>
> samplePath =
> #'((moveto
I am trying to create a text span solid line that ends with just 1/2 of an
arrowhead on the right side. Is there a way to set a graphic, something
simple like ...
samplePath =
#'((moveto 0 0)
(lineto -1 -.5)
(closepath))
... as the right text for the spanner? Something like:
\onc