在我的文件中,我有一些表格,它们的编号不正确。我的意思是:我在第 4 章中有两个表格,在第 5 章中有一个表格。它们的编号为4.1
、4.2
和5.1
,而我希望它们的编号为1
、2
和3
。MWE 在这里:
\documentclass{report}
\begin{document}
\section{one}
...
\section{four}
\begin{table}
\caption{Table one}
%a table
\end{table}
\begin{table}
\caption{Table two}
%a table
\end{table}
\section{five}
\begin{table}
\caption{Table three}
%a table
\end{table}
\end{document}
答案1
问题是你正在使用report
document 类。 不适\section
用于报告(但\chapter
另一方面是,所以我建议你使用它)。只需使用article
文档类即可解决问题。在这里,让我给你演示一下。
\documentclass{article}
\begin{document}
\section{one}
...
\section{four}
\begin{table}
\caption{Table one}
%a table
\end{table}
\begin{table}
\caption{Table two}
%a table
\end{table}
\section{five}
\begin{table}
\caption{Table three}
%a table
\end{table}
\end{document}
结果如下。
我祝愿您度过愉快的一天并在未来使用 LaTeX 取得更多成功。