General ⇒ Redirection of PDF Output File
-
- Posts: 12
- Joined: Fri Feb 01, 2013 11:39 pm
Redirection of PDF Output File
I appreciate it very much if someone can tell me if there is command that I can redirect my PDFLaTeX output into a used defined file.
Thanks in advance
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Redirection of PDF Output File
-output-directory
and specify an output folder.
Code: Select all
pdflatex -output-directory=path/to/your/output/folder document
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Redirection of PDF Output File
--jobname <name>
in order to use a different name for the output files than for the input file. Note that <name>
must be without extension as it is used as a base name for output and auxiliary files.Code: Select all
pdflatex --jobname outputname --output-directory=path/to/your/output/folder document