\input 目录中带有图形的文件

\input 目录中带有图形的文件

我有一个由 aa 组成的目录结构主要的包含子文件夹的文件夹第1章第2章,...

每个子文件夹都包含一个 tex 文件和一些仅在该特定章节中使用图像文件。

章节文件包含在main.tex主文件夹中,主要包括:

\documentclass{article}
\begin{document}
    \input{Chapter1/chapter1.tex}
    \input{Chapter2/chapter2.tex}
\end{document}

我知道我可以通过指定相对于主文件夹的路径在 chapter.tex 中包含图像文件,例如chapter1.tex我可以写:

\includesvg{Chapter1/img}

有没有办法避免指定文件夹(或仅指定一次)?我宁愿写:

\includesvg{img}

相关内容