有时候,我们需要对Latex中的图片进行重新编号,比如,不按照章节方式进行编号。下面介绍几种我总结出来的方法。
方法一:用\counterwithout重新定义编号方式
使用方法如下:
\usepackage{chngcntr}%需要调用这个宏包
\counterwithout{figure}{section}%取消图片按章节编号
注:此方法还可以重新定义其它编号,比如公式等。例如:
\counterwithout{equation}{chapter}%将equation环境重新编号,不按章编号
\counterwithout{equation}{section}%将equation环境重新编号,不按节编号
方法二:去掉图片\caption{}项,自定义标题
使用方法如下:
\begin{figure}
\centering%居中
\includegraphics[width=5.0in]{images/ytht.eps}
%\caption{}%这个标题已经取消
\begin{center}
Figure 1. This is the caption defined by myself.
\end{center}
\end{figure}
结果如下: