按字母顺序排列的目录计数器
如何将目录中的计数器更改为字母(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在调用 \tableofcontents 之前,你想要这样的东西,
这表示对于章节编号,使用 Alpha(abetic) 符号来表示章节计数器。如果您想要更改的不仅仅是章节标题,则需要找到正确的计数器(例如 \thesection 用于部分。)
You want something like this, before you call \tableofcontents
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.)