据我所知,我的 TexLive 2014 发行版在\includegraphics
仅找到 .eps 文件时会自动执行 eps 到 pdf 的转换。但是我想禁用此自动转换,因为它会干扰我自己的 Makefile 和 latexmk 自定义依赖项转换方案。
有没有办法禁用 TexLive 中的自动转换?
答案1
\newcommand{\DoNotLoadEpstopdf}{}
在加载之前添加graphicx
;文件开始之前,之前\documentclass
是一个好位置。
从pdftex.def
:
% In other words, by default .eps files will be automatically
% converted to .pdf files when outputting pdf. This can be wrong!
% If the .pdf is the source, rather than the .eps, you should put
% \newcommand{\DoNotLoadEpstopdf}{}
% before even the \documentclass line of your document.