有一段时间,我一直在使用图的节内编号。以前是通过添加包chngcntr
(不再需要)和来完成的\counterwithin
。
但是,现在图不再是图 1.1,而是图 11 --- 下面是 MWE。
\documentclass[10 pt]{article}
\counterwithin{figure}{section}
\begin{document}
\section{fake section}
\begin{figure}[h]
xyz
\caption{TBA}
\label{fig:tba}
\end{figure}
\end{document}