尽管当前目录中有pdflatex
一个文件A.eps
和一个子目录,但这个 MWE 无法在 TeX Live 中编译:gfx
\documentclass{article}
\usepackage{graphicx}
\graphicspath{{gfx/}}
\usepackage{epstopdf}
\epstopdfDeclareGraphicsRule{.eps}{pdf}{.pdf}{repstopdf #1 --outfile=gfx/\OutputFile}
\begin{document}
\includegraphics{A.eps}
% \includegraphics{A}
\end{document}
文件gfx/A-eps-converted-to.pdf
已正确生成,但未找到。
我很确定它确实在 MiKTeX 中编译,但我现在无法测试它。
A.eps
(当我用; 替换时A
,或者当我gfx/
从 中删除\epstopdfDeclareGraphicsRule
并添加时,它确实可以编译\epstopdfsetup{outdir=gfx/}
。)
为什么 TeX Live 对扩展名很敏感?这是 MiKTeX 和 TeX Live 之间众多细微差异之一吗?这算是 bug 吗?