我使用\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}