按字母顺序排列的目录计数器

发布于 2024-09-24 12:18:53 字数 193 浏览 1 评论 0原文

如何将目录中的计数器更改为字母(A、B、C)?

举例说明:

1. Section
2. Section
3. Section

A. Section
B. Section
C. Section

谢谢

How do I change the counter in ToC to letters (A, B, C)?

To illustrate:

from

1. Section
2. Section
3. Section

to

A. Section
B. Section
C. Section

Thanks

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

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

发布评论

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

评论(1

你在看孤独的风景 2024-10-01 12:18:53

在调用 \tableofcontents 之前,你想要这样的东西,

\renewcommand{\thechapter} {\Alph{chapter}}

这表示对于章节编号,使用 Alpha(abetic) 符号来表示章节计数器。如果您想要更改的不仅仅是章节标题,则需要找到正确的计数器(例如 \thesection 用于部分。)

You want something like this, before you call \tableofcontents

\renewcommand{\thechapter} {\Alph{chapter}}

That says for chapter numbering use Alph(abetic) symbols for representing the chapter counter. You'll need to find the right counter if you want to change more than just chapter headings, (\thesection is for sections for example.)

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