Plots.jl title greek letter error

using Plots
plot(1,1, title="ρ")

gives

It turns out to be a problem with unicode, and can be worked around with LaTeX input.

plot(1,1, title="\\rho")

See Typing special characters in Plot legends and titles - #11 by stevengj

1 Like