Problem escaping 2nd dollar sign in plot title

A workaround is to use another unicode dollar sign:

using Plots
x = y = 1:5
str = "if you give me $2 then i will give you $1"
plot(x, y, title=str, label="", titlefont="Helvetica")
1 Like