论文图表编号问题

论文图表编号问题

我在论文中遇到了图表编号问题,这些编号应该出现在图/表 1.1、1.2...2.1 中。我试图通过这篇文章解决这个问题[这里][这里]。我根据此链接中的以下建议进行了更改,例如:

\usepackage{chngcntr}
\counterwithin{figure}{section}

或者

\setcounter{figure}{0}
\renewcommand{\thefigure}{\arabic{section}.\arabic{figure}}

然而,编号没有变化……以下是我的 MWE

\documentclass{uumthesis}
\usepackage[nosectionbib,natbibapa]{apacite}
\usepackage{hyperref}

\makeatletter
\patchcmd{\st@rtbibchapter}{\addcontentsline{toc}{chapter}{\bibname}}{\addxcontentsline{toc}{chapter}
{\texorpdfstring{\spacedlowsmallcaps{\bibname}}{\bibname}}}{}{}
\makeatother

\usepackage{graphicx}
\usepackage{amsmath}

\usepackage{caption}
\usepackage{subcaption}

\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{tabularx}

\usepackage{amssymb}

\begin{document}
\mainmatter

......

\bibliographystyle{apacite}
\bibliography{myref}
\end{document}

以下是图中的示例 这应该是图 1.1

这应该是图 1.4

如你所见,图的编号不是按照章节

相关内容