我正在使用 documentclass scrbook
。启动时它appendix
会给我类似这样的信息:
A. Some chapter
A.1. Some section
A.2. Some section
A.2.1. Some subsection
这些数字将像A.1
、A.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}