几个部分的罗马编号

几个部分的罗马编号

我的文档中有一些附件,我想用罗马字体对它们进行编号。

我怎样才能做到这一点?

我试过:

  \documentclass[12pt,a4paper,oneside]{book}
  \begin{document}

  \chapter*{Atachments}
  \renewcommand{\thesection}{\Roman{section}}
  \section{my section}

  \end{document}

编辑在附件章节*之前,我有一个附录,其中包含 A.1、A.2、A.3 节。

因此,第一部分附件的编号是IV,而不是I。

我该如何纠正这个问题?

答案1

您可以使用\setcounter{section}{0}

  \documentclass[12pt,a4paper,oneside]{book}
  \begin{document}
  \appendix
  \chapter{One}
  \section{one}  
  \chapter*{Attachments}
  \setcounter{section}{0}
  \renewcommand{\thesection}{\Roman{section}}  
  \section{my section}
  %
  \end{document}

在此处输入图片描述

相关内容