I have been a regular user of Matlab for plotting. I use matlabfrag
to save figures as eps
for the plot along with a tex
file containing labels. The complete plot can be rendered in Latex upon calling the eps and tex files together.
Now that I switched to Python, I am wondering if there is any equivalent of matlabfrag
for Python? I am aware of matplotlib2tikz
but would like to avoid compute overload for generating plots each time on compiling Latex, as there are way too many plots sometimes.
PS: In the end, I am looking for plots with Latex-like fonts with a controllable font size. Reduced compute load is another requirement.