\includegraphics 与 lualatex 结合使用时的空格

\includegraphics 与 lualatex 结合使用时的空格

当包含来自与当前工作目录不同的目录且路径中包含空格的图形文件时,我通常将路径放在双引号中,如下所示:

\usepackage{graphicx}

...

\includegraphics{"the/path/having whitespaces/file"}

或者,我使用以下\graphicspath命令:

\usepackage{graphicx}
\graphicspath{{"the/path/having whitespaces/"}}

...

\includegraphics{file}

使用时,此方法可以正常工作pdflatex。但是,使用时lualatex会产生错误,提示“无法找到图像文件”。

有人知道如何在 Lualatex 中包含带有空格的路径中的图像文件吗?

非常感谢。

相关内容