当包含来自与当前工作目录不同的目录且路径中包含空格的图形文件时,我通常将路径放在双引号中,如下所示:
\usepackage{graphicx}
...
\includegraphics{"the/path/having whitespaces/file"}
或者,我使用以下\graphicspath
命令:
\usepackage{graphicx}
\graphicspath{{"the/path/having whitespaces/"}}
...
\includegraphics{file}
使用时,此方法可以正常工作pdflatex
。但是,使用时lualatex
会产生错误,提示“无法找到图像文件”。
有人知道如何在 Lualatex 中包含带有空格的路径中的图像文件吗?
非常感谢。