软件包 grffile 无法处理包含空格的图形路径和文件名

软件包 grffile 无法处理包含空格的图形路径和文件名

如果图像位于文档的目录中,则此方法有效:

\usepackage{graphicx}
\usepackage{grffile}

\begin{document}
    \input{"image name with spaces"}
\end{document}

images如果图像位于名为this works 的子目录中:

\usepackage{graphicx}
\graphicspath{{./images/}}

\begin{document}
    \input{imagenamewithoutspaces}
\end{document}

但是,如果图像位于名为的子目录中images,则此方法不起作用:

\usepackage{graphicx}
\usepackage{grffile}
\graphicspath{{./images/}}

\begin{document}
    \input{"image name with spaces"}
\end{document}

grffile我是否做错了什么或者使用时是否存在限制graphicspath

编辑

图形 Iinput.pdf_tex通过 Inkscape 的 PDF+LaTeX 导出创建的 -文件。我通过 输入文件\input{"image name with spaces.pdf_tex"}。在这个文件中\includegraphics{image name with spaces.pdf}被称为。

相关内容