pdflatex provides a possibility to specify the output directory:
-output-directory=DIR use DIR as the directory to write files to
I would like to set the output file so that
pdflatex file.tex create a foo.pdf instead of file.pdf
Is that possible?
pdflatex -jobname=foo file.tex? – AlexG Jun 21 '18 at 12:34-jobnamedid not help – Viesturs Jun 21 '18 at 12:36pdflatex -jobname=foo file.texOKpdflatex file.tex -jobname=fooFAIL – Viesturs Jun 21 '18 at 12:37pdflatex -jobname=foo -output-directory=bar file.texandpdflatex -output-directory=bar -jobname=foo file.texproducesbar/foo.pdf. – AlexG Jun 21 '18 at 12:41file.texsuccedes all of the options. – Viesturs Jun 21 '18 at 12:42pdflatex --helptells. – AlexG Jun 21 '18 at 12:43