如何更改从 EPS 文件转换而来的 PDF 图形的输出目录?我有一个用于存放文档编译时生成的辅助文件的输出文件夹,但 EPS 格式的图形将 PDF 格式的输出文件保留在同一文件夹中。
main.tex
img
- Figure.eps
- Figure.pdf
_output
- main.aux
- etc...
因此,为了清楚起见,我想将文件 Figure.pdf 移动到 _output,不是手动移动,而是让编译软件来做。如果这有什么不同的话,我正在使用 lualatex。
答案1
您将需要设置outdir
以及epstopdf
通常的\graphicspath
(或TEXINPUTS
)来查找原始图像:
\documentclass{article}
\usepackage{graphicx}
\graphicspath{{img/}}
\usepackage{epstopdf}
\epstopdfsetup{outdir = ./output/}
\begin{document}
\includegraphics{demo}
\end{document}