I have very big issues in externalizing and generella produce plot with latex.
I'm compiling with PDFLatex and the compiler is texmaker. I'm compiling my thesis that consists in different chapters and some plots. i already red all the topics about this problem but i can't get a solution.
the problem are:
- first, latex refuse to externalize picture, so i added
--enable-write18in the library with\usetikzlibrary{external}\tikzexternalize. - after that, some plot were drawn, but memory exceed problem come along;
- i add the line
--extra-mem-bot=100000000(now it's removed) but after i reach 21000000000 it can compile no more;
At this moment the lines \usetikzlibrary{external}\tikzexternalize are commented because the compiler totally stopped to work even with them on and only loaded the picture already created, even i modify them.
what would i do to solve the problem?
\usetikzlibrary{external} \tikzexternalize[prefix=tikz/,shell escape=-enable-write18]
in the main. i ran out of memory again with the messagge ! TeX capacity exceeded, sorry [main memory size=3000000]
displayed.
so you're basically telling me to create a tex document for each plot and try to run it separately? the structure of this polt consists in
\begin{figure}
– Enrico Lorenzi Mar 06 '21 at 16:22\begin{figure} \begin {subfigure} \begin{tikzpicture} \begin{axis} (graph informations) \end{axis} \end{tikzpicure} \end{subfigure} \begin {subfigure} \begin{tikzpicture} \begin{axis} (graph informations) \end{axis} \end{tikzpicure} \end{subfigure} \begin {subfigure} \begin{tikzpicture} \begin{axis} (graph informations) \end{axis} \end{tikzpicure} \end{subfigure} \end{figure}
– Enrico Lorenzi Mar 06 '21 at 16:30