我正在制作一个文档,xelatex
但遇到了问题。我\includegraphic
从包中包括了一个图形graphicx
。我的文件名图a1-2.png包含一些空格,当我创建文档时,我的图像被正确导入到 pdf 中,但文件名的剩余部分在图像之前打印出来a1-2.png a1-2.bb。我也有消息LaTeX 警告:在输入行 7 中未找到文件“illustration a1-2.png”。
这是我的乳胶代码和结果:
\documentclass{article}
\usepackage{graphicx}
\title{Mesure de formes planes complexes}
\begin{document}
\maketitle
\begin{figure}
\centering\includegraphics[width=0.9\linewidth, height=12.0cm, keepaspectratio]{illustration a1-2.png}\caption{Polygonisation du contour}\label{Mesure_de_formes_planes_complexes}
\end{figure}
\end{document}
我认为 graphicx 可以处理带有空格的文件名。
我尝试了以下命令\includegraphics[..]{{illustration a1-2}.png}
,\includegraphics[..]{{"illustration a1-2"}.png}
但没有结果。
有谁知道问题出在哪里以及如何在文件名中包含带有空格的图像而不会出现这个错误?