附录:无章节计数器的章节

附录:无章节计数器的章节

我正在使用 documentclass scrbook。启动时它appendix会给我类似这样的信息:

A. Some chapter
A.1. Some section
A.2. Some section
A.2.1. Some subsection

这些数字将像A.1A.2等等。

我正在寻找一种方法来从(子)章节标题中删除章节计数器,以便获得:

A. Some chapter
1. Some section
2. Some section
2.1. Some subsection

而数字仍应是A.1,,A.2等等。

这可能吗?

答案1

如果你添加以下行

\renewcommand{\thesection}{\arabic{section}}

之后您就会立即\appendix获得想要的输出。

截屏

以下是完整的 MWE

% arara: pdflatex
\documentclass{scrbook}

\begin{document}

\appendix
\renewcommand{\thesection}{\arabic{section}}
\chapter{first chapter}
\section{section}
\section{section}
\section{section}
\section{section}
\subsection{subsection}
\subsection{subsection}
\subsection{subsection}
\end{document}

相关内容