Dear all,
I have the following code to plot several points and marks beside it:
using Gaston
n=15
L=rand(1:100,n,2)
L=[L 1:n]
scatter([L[1,1]], [L[1,2]],linewidth="3", pointtype="fsquare", plotstyle="linespoints",linecolor = "'red'",Axes(key = :off))
plot!(L[2:2,1], L[2:2,2],linewidth="3", pointtype="fcircle",linecolor = "'red'")
plot!(L[1:1,1].+2, L[1:1,2],linewidth="3", pointtype="453",linecolor = "'red'")
I would like to print the mark “456” beside the first point.
However, the Gaston package (my preferable) does not accept the string ‘453’ that has more one character, and only print the first character. How can I fix this, please?

