You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If using larger designs you might run into the [...] TeX capacity exceeded, sorry [main memory size=xxx]. error.
Quickfix:
Find the latex config file kpsewhich -a texmf.cnf and modify the memory size by including/changing the value of, e.g. : main_memory = 3000000 (see comments in texmf.cnf file for more details.) Then run the following command as root to recreate the format files: fmtutil-sys --all
Long-Term fix:
This can theoretically prevented by rendering each layer individually, using:
\usetikzlibrary{external}
\tikzexternalize`
and use a separate tikz-environment. I have not solved how to make the layers overlap perfectly then (especially taking into account, that they might have different sizes), but this should be solvable.
The text was updated successfully, but these errors were encountered:
Also take into account, that apparently main_memory must be smaller or equal than 12,435,455 [Source]
But you can also set extra-mem-bot and extra-mem-top.
If using larger designs you might run into the
[...] TeX capacity exceeded, sorry [main memory size=xxx].
error.Quickfix:
Find the latex config file
kpsewhich -a texmf.cnf
and modify the memory size by including/changing the value of, e.g. :main_memory = 3000000
(see comments in texmf.cnf file for more details.) Then run the following command as root to recreate the format files:fmtutil-sys --all
(Taken from: https://tex.stackexchange.com/questions/7953/how-to-expand-texs-main-memory-size-pgfplots-memory-overload )
Long-Term fix:
This can theoretically prevented by rendering each layer individually, using:
and use a separate tikz-environment. I have not solved how to make the layers overlap perfectly then (especially taking into account, that they might have different sizes), but this should be solvable.
The text was updated successfully, but these errors were encountered: