混合章节编号(例如第 1a 章、第 1b 章、第 2 章...)

混合章节编号(例如第 1a 章、第 1b 章、第 2 章...)

我正在使用该课程拼凑 4 篇研究论文book。前两篇论文密切相关,因此我希望章节标签如下:

  • 第 1a 章
  • 第 1b 章
  • 第2章
  • 第3章

有没有办法用某些 LaTeX 变体实现这种混合编号?

答案1

通过重新定义\thechapter和改变 counter 的值chapter,下面的示例可以工作,尽管不是很优雅。

\documentclass{book}

\begin{document}
\tableofcontents

\renewcommand{\thechapter}{1\alph{chapter}}
\chapter{title}

\chapter{title}

\setcounter{chapter}{1}
\renewcommand{\thechapter}{\arabic{chapter}}
\chapter{title}

\chapter{title}
\end{document}

在此处输入图片描述

相关内容