When using `pi` in for example `plot(xlims=(0,pi))` the generated LaTeXcode is ``` xmin = {0}, xmax = {π = 3.1415926535897...} ``` Workaround: ``` fpi=Float64(pi) plot(xlims=(0,fpi)) ```
When using
piin for exampleplot(xlims=(0,pi))the generated LaTeXcode isWorkaround: