我正在使用labbook
基于 scrbook 的文档类。labbook
没有对章节进行编号,但图形编号仍然按照原来的方式运行scrbook
:它没有运行,但每个章节都以“图 1”开头。我试过了
\usepackage{chngcntr}
\counterwithout{figure}{addchap}
但我得到的错误addchap
不是计数器(这绝对有道理)。如何才能在整个文档中实现连续的数字编号?
梅威瑟:
\documentclass[oneside]{labbook}
\usepackage[]{graphicx}
\begin{document}
\labday{Monday}
\begin{figure}
\centering
\includegraphics{Figure1.jpg}
\caption{Figure1}
\label{fig:Figure1}
\end{figure}
\labday{Tuesday}
\begin{figure}
\centering
\includegraphics{Figure2.jpg}
\caption{Figure2}
\label{fig:Figure2}
\end{figure}
\end{document}
答案1
计数器figure
与计数器绑定在一起labday
(而\addchap
是用于添加另一个的宏\labday
,因此不构成计数器)。因此,使用
\usepackage{chngcntr}% http://ctan.org/pkg/chngcntr
\counterwithout{figure}{labday}
labday
提供从到 的运行数据labday
。