Rough situation: I have a paper with many plots generated with R, each containing quite a few datapoints.
This doesn't compile with pdflatex due to the limited... dunno, stack? memory? Something like that.
It does compile with lualatex, which I've specified in my .latexmkrc:
# LuaLatex
$pdf_mode = 4;
Now, from my understanding, arxiv-collector by default tries to create the dependencies file through latexmk -pdf ..., which apparently overrides my settings and calls pdflatex, which fails.
This can be circumvented like so:
# Save dependencies for arxiv_collector.
$dependents_list = 1;
$deps_file = ".deps";
My arxiv-collector version is:
arxiv_collector.py 0.4.1
Rough situation: I have a paper with many plots generated with R, each containing quite a few datapoints. This doesn't compile with pdflatex due to the limited... dunno, stack? memory? Something like that. It does compile with lualatex, which I've specified in my
.latexmkrc
:Now, from my understanding, arxiv-collector by default tries to create the dependencies file through
latexmk -pdf ...
, which apparently overrides my settings and callspdflatex
, which fails.This can be circumvented like so:
and
But it was a bit surprising.