如果图像位于文档的目录中,则此方法有效:
\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}
被称为。