有没有办法只检查 \graphicspath 文件夹中的图形?

有没有办法只检查 \graphicspath 文件夹中的图形?

我使用\graphicspath命令来告诉我的 LaTeX 文档各个图片的位置。但是,我注意到 LaTeX 首先检查 TeX 文件所在的目录,然后才在 中指定的目录中查找\graphicspath

有没有办法告诉 LaTeX 仅在目录中查找图形\graphicspath?或者这里唯一的解决方案是清理源文件的目录并确保那里没有图形?

答案1

我假设你有一个MyImage.png名为文件夹内的图像images

\documentclass{article}
\usepackage{graphicx}
\let\oldIncludegraphics\includegraphics

\renewcommand{\includegraphics}[2][]{\oldIncludegraphics[#1]{images/#2}}

\begin{document}
\includegraphics[width=0.4\textwidth]{MyImage}
\end{document}

相关内容