JuliaTeX / PGFPlots.jl

This library uses the LaTeX package pgfplots to produce plots.
Other
188 stars 36 forks source link

LaTeX xticklabels #181

Closed isboonto closed 2 years ago

isboonto commented 2 years ago

How could we make LaTeX xticklabels ? xticklabels={$\pi$, $2\pi$}

mykelk commented 2 years ago

You'd put it in the style optional argument: style = raw"xticklabels={$\pi$, $2\pi$}".

isboonto commented 2 years ago

Perfect! thx a lot.