有没有办法添加章节,不是增加章节编号,而是采用前一个章节并添加字母后缀?
原因是我有一套我正在教的课程的笔记。我已经为学生打印了一些章节,现在想在正确的位置插入本学期的附加章节,而不打乱现有的编号。
\chapter{First original chapter}
% Numbered as Chapter 1
\chapter{Added chapter}
% I want this chapter to be Chapter 1A or 1a etc.
\chapter{Second original chapter}
% Numbered as Chapter 2
答案1
在环境中嵌套附加章节additional
可以实现以下效果:
\documentclass{book}
\newenvironment{additional}
{\addtocounter{chapter}{-1}\renewcommand{\thechapter}{ \arabic{chapter}A}}
{}
\begin{document}
\chapter{First original chapter}
\begin{additional}
\chapter{Added chapter}
% I want this chapter to be Chapter 1A or 1a etc.
\end{additional}
\chapter{Second original chapter}
% Numbered as Chapter 2
\end{document}