在回忆录中手动设置一个章节编号

在回忆录中手动设置一个章节编号

我需要在第 7 章和第 8 章之间插入第 7.5 章。我已经知道如何让第 8 章成为第 8 章,但我不知道如何让第 7.5 章成为第 7.5 章。我使用的是 memoir.cls 和 chapterstyle“dash”。

这是我的 MWE:

\documentclass{memoir}

\chapterstyle{dash}

\begin{document}

\chapter{The Laboratory} %This is the chapter I want labelled 7.5

\setcounter{chapter}{7}
\chapter{Testing} %This is the chapter I want to be labelled "8".
\end{document}

谢谢!

答案1

在此处输入图片描述

\documentclass{memoir}

\chapterstyle{dash}

\begin{document}

\renewcommand\thechapter{7.5}
\chapter{The Laboratory} %This is the chapter I want labelled 7.5
\renewcommand\thechapter{\arabic{chapter}}

\setcounter{chapter}{7}
\chapter{Testing} %This is the chapter I want to be labelled "8".
\end{document}

相关内容