使用TeXstudio写论文,要求图片文件为.eps格式。
据说只要装了Latex,就可以从图片的打开方式中直接点bitmap2eps.exe将图片转换为eps格式
在TeXstudio中加载eps图片时出现问题,代码如下:
\begin{figure}[hbt!]
\centering
\includegraphics[width=.8\textwidth]{Figure 1}
\caption{Fig1caption.} \label{fig:II-1}
\end{figure}
报错:File `Figure 1-eps-converted-to.pdf' not found,显示如下:
网上搜了一些方法没能解决,就直接问师兄,他说把文件Figure 1名称中间的空格去掉。
\begin{figure}[hbt!]
\centering
\includegraphics[width=.8\textwidth]{Figure1}
\caption{Fig1caption.} \label{fig:II-1}
\end{figure}
我一试,居然就成功了!真是太神奇了。。