我使用 来longtable
表示该软件包产生的命名法nomencl
。在这里,longtable
用作替代tabluar
。不幸的是,这种用法会混淆totalcount
软件包,导致表计数不正确。
梅威瑟:
\documentclass{report}
\usepackage{longtable}
\usepackage[figure,table]{totalcount}
\begin{document}
\verb|\totaltables| is \totaltables, but should be 2.
\begin{table}One\caption{Table One}\end{table} % ONE
\begin{table}Two\caption{Table Two}\end{table} % TWO
\begin{longtable}{cc}
Long & Bla
\end{longtable}
\end{document}
结果:
答案1
longtable
增加表计数器,然后安排\caption
不增加它。(所以不像table
依赖于\caption
增加计数器。)
这简化了长表中连续页眉的多个标题的某些方面,但实际上这并不是一个出色的设计。
因为您知道您没有使用过\caption
这个,longtable
所以您可以将计数器设置回一个以弥补longtable
已经增加的计数器:
\documentclass{report}
\usepackage{longtable}
\usepackage[figure,table]{totalcount}
\begin{document}
\verb|\totaltables| is \totaltables, but should be 2.
\begin{table}One\caption{Table One}\end{table} % ONE
\begin{table}Two\caption{Table Two}\end{table} % TWO
\begin{longtable}{cc}
Long & Bla
\end{longtable}
\addtocounter{table}{-1}
\end{document}