LaTeX定制章节编号格式和计数器

2022-01-27
#LaTeX

1. format of section or subsection

\renewcommand\thesection{\Roman{section}}

\renewcommand\thesubsection{\Roman{section}.\Alph{subsection}}
  • \arabic 阿拉伯数字
  • \roman 小写的罗马数字
  • \Roman 大写的罗马数字
  • \alph 小写字母
  • \Alph 大写字母

2. depth of the number

\setcounter{secnumdepth}{3}
  • book: -2 ~ 5; default: 2; -2 means canceling the number
  • article: -1 ~ 5; default: 3

3. counter

\setcounter{table}{3}
  1. part 部序号
  2. chapter 章序号
  3. section 节
  4. subsection 小节
  5. subsubsection 小小节
  6. paragraph 段
  7. subparagraph 小段
  8. figure 插图序号
  9. table 表格序号
  10. equation 公式序号
  11. page 页码计数器
  12. footnote 脚注序号
  13. mpfootnote 小页环境中脚注计数器

4. Reference