如何从子目录输入 eps_tex?

如何从子目录输入 eps_tex?

我有以下目录:

 maindir
  '-thesis.tex
  '-figures
      '-drawing.eps_tex
      '-drawing.eps

我的 thesis.tex 如下所示:

\documentclass{article}
\usepackage{graphicx, color}

\begin{document}

\input{figures/drawing.eps_tex} 

\end{document}

当我尝试编译时出现以下错误:

LaTeX Warning: File `drawing.eps' not found on input line 52.
! Package pdftex.def Error: File `drawing-eps-converted-to.pdf' not found.

如果我在 中有绘图maindir,则不会发生错误,并且会构建,并且一切都会按预期运行。显然,对于所提及的文件,脚本中drawing-eps-converted-to.pdf存在一些隐含信息,认为它是在 中执行的。input{}maindir

如何解决这个问题?我有很多数字,但不想将它们保留在 中maindir

答案1

设置\graphicspath已修复:

\graphicspath{{\curdir figures/}}

相关内容