Using pgf backend for matplotlib in julia

I started using Julia to analyze some data that works great.

I also use PyPlot / Matplotlib for plotting and I worked as well.

Now these plots should find their way in my latex document which I want to achieve using matplotlib pgf backend. It also works, but I really don't know how to pass the arguments

mpl.rcParams.update(parameters)

      

Is there anyone on Julia's team who can tell me how to do this?


EDIT2:

short update of the issue: setting rc-options is done by setting them like this:

PyPlot.matplotlib[:rc]("text", usetex=true) # here: allow tex rendering

      

+3


source to share





All Articles