我正在使用 LaTeX 撰写一篇研究论文。
我要插入一些图像。现在,当我们观察研究论文中的图像时,它们具有以下格式:
image
its caption
我正在尝试使用以下代码复制此代码
\begin{figure}[h]
\centering
\includegraphics[width=.75\linewidth]{E:/Arifah/MS/thesis/final thesis report/Component Based Software Development.png}
\caption{Component Based Software Development}
\end{figure}
但是我得到的格式是
the path of image
image
caption
现在,我该如何删除该路径?
答案1
您的文件名包含 LaTeX 无法处理的空格。
要么重命名你的文件以不包含空格,或者如果你运行pdflatex
尝试图形文件该包应该能够让它即使在有空格的情况下也能工作。