Here’s my sample:
using Plots
using Plots.PlotMeasures
fo = font(18)
gr(titlefont=fo, guidefont=fo, tickfont=fo, legendfont=fo, show = true, size=(700,200))
plot(
plot([0.01,0.02,0.03,0.04],label = L"\sigma_E")
,xlabel = "Timestep"
,bottom_margin=10px
,left_margin = 50px
,ylabel = "test"
)
How can I fix this collision with the label? Moving the margin just shifts the whole problem to the right…