所以我们确实 \includegraphics[scale=0.75]{myfig.eps}
要在页面上获取图像。但如何将其包裹到边框中并使其可分配一些自动图像编号,如image N
标签image about...
\myincludegraphics[scale=0.75]{myfig.eps}{描述}
所以重点是——如何获得这样的结果: ?
答案1
这是每个 LaTeX 初学者指南中都会涉及的一个非常基本的问题。如果你还没有读过这样的指南,我建议你读一读。
使用图形环境
\begin{figure}[!htb]
\centering
\includegraphics[width=0.8\textwidth]{picture-file-name}
\caption{Some description of the picture}
\end{figure}