\includegraphics:未找到文件

\includegraphics:未找到文件

我正在尝试使用 LuaLaTeX 的 graphicx 包插入图像。我收到一条错误消息,提示无法找到文件。无论我使用 \graphicspath 参数还是在 \includegraphics 中包含完整路径,都会出现此错误。在阅读了所有我能找到的类似讨论后,我得到了以下代码:

    \documentclass[12pt]{article}
    \usepackage{graphicx}
    \graphicspath{{Figures/}}
    \usepackage{fontspec}
    \setmainfont{Century Gothic}

    \begin{document}
    \begin{figure}
    \centering
    \includegraphics{ACTB Normalized.png}
    \end{figure}
    \end{document}

我收到的错误是:

LaTeX 警告:在输入行 10 中未找到文件“ACTB Normalized.png”。

!包 luatex.def 错误:未找到文件“ACTB Normalized.png”:使用草稿设置。

请参阅 luatex.def 包文档以了解解释。输入 H 可立即获得帮助。...

l.10 \includegraphics{ACTB 规范化.png}

我还尝试过其他图像文件格式,包括 .jpg、.pdf 和 .eps。如果您能就此问题提供任何见解,我将不胜感激。谢谢!

答案1

事实证明这是一个非常简单的解决方案。显然它不喜欢我的图形文件名中的空格。删除空格或使用grffile包可以解决问题。感谢您的评论!

答案2

不要在文件路径中使用重音字符或空格

相关内容