【发布时间】:2010-09-21 17:22:22
【问题描述】:
如何将 ToC 中的计数器更改为字母(A、B、C)?
举例说明:
来自
1. Section
2. Section
3. Section
到
A. Section
B. Section
C. Section
谢谢
【问题讨论】:
标签: latex counter tableofcontents page-numbering
如何将 ToC 中的计数器更改为字母(A、B、C)?
举例说明:
来自
1. Section
2. Section
3. Section
到
A. Section
B. Section
C. Section
谢谢
【问题讨论】:
标签: latex counter tableofcontents page-numbering
在调用 \tableofcontents 之前,你想要这样的东西
\renewcommand{\thechapter} {\Alph{chapter}}
也就是说,对于章节编号,使用字母(abetic)符号来表示章节计数器。如果您想要更改的不仅仅是章节标题,您需要找到正确的计数器(例如,\thesection 用于章节。)
【讨论】: