LaTex 表编号

发布于 2024-09-06 08:07:12 字数 299 浏览 1 评论 0原文

如何根据文章章节中的表格对表格进行编号?所以我希望第五部分中的所有表格都编号为“Table 5.1”,...,“Table 5.n”。

我尝试过

\usepackage{chngcntr}

\counterwithin{figure}{section}

\counterwithin{table}{section}

\counterwithin{equation}{section}

,但遇到了一些问题(我猜缺少软件包)。

但是,我需要一个更简单的解决方案,而不需要使用此类包。

How could I number the tables in my article chapter based ? So I want all the tables in the fifth section to be numbered like "Table 5.1", ..., "Table 5.n".

I tried

\usepackage{chngcntr}

\counterwithin{figure}{section}

\counterwithin{table}{section}

\counterwithin{equation}{section}

but I am having some problems (missing package I guess).

However, I need a simpler solution, without the need to use such packages.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你与清晨阳光 2024-09-13 08:07:12

Article 类没有章节。尝试书籍或报告类 - 您会发现表格和图形会根据章节自动编号。

The article class doesn't have chapters. Try the book or report classes - you'll find that the tables and figures are automatically numbered according to chapter.

撕心裂肺的伤痛 2024-09-13 08:07:12

这是一个不使用任何包的解决方案(由“The Latex Companion”,A1.4 提供):

\makeatletter
\renewcommand{\thetable}{\thesection.\@arabic\c@table}
\@addtoreset{table}{section}
\makeatother

每当启动新部分时,这都会重置表计数器,并将其格式化为 sectionno.tableno而不仅仅是tableno。您可以类似地更改figureequation 计数器。

如果您使用 amsmath 包(或像 amsart 这样自动加载它的 AMS 类),您可以使用

\numberwithin{table}{section}

这是为方程创建的,但适用于任何计数器对尽管据说可能存在一些棘手的情况,但它不能很好地处理。

Here is a solution without the use of any package (courtesy of "The Latex Companion", A1.4):

\makeatletter
\renewcommand{\thetable}{\thesection.\@arabic\c@table}
\@addtoreset{table}{section}
\makeatother

This resets the table counter whenever a new section is started, and formats it as sectionno.tableno instead of just tableno. You can change the figure and equation counters similarly.

If you are using the amsmath package (or an AMS class like amsart that loads it automatically), you can use

\numberwithin{table}{section}

This was created for equations, but works for any pair of counters though supposedly there might be tricky situations that it does not handle well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文