删除章节号,但在公式中保留章节号

删除章节号,但在公式中保留章节号

我遇到一个问题,如下图,我想把附录里的章节号去掉,但公式里的章节号要保留,试过很多次了。

在此处输入图片描述

答案1

如果您正在使用类似 KOMA-Script 类scrbook,或者scrreprt您可以在里面重新定义\chapterformat(和\chaptermarkformat\thesection) \appendix

\documentclass{scrbook}

\usepackage[ngerman]{babel}
\usepackage{xpatch}
\apptocmd\appendix{\renewcommand*{\chapterformat}{}\let\chaptermarkformat\chapterformat\renewcommand*{\thesection}{\arabic{section}}}{}{}

\begin{document}
\chapter{Test}
\appendix
\chapter{Anhang}
\section{Lange Formeln}
\begin{equation}
  f(x)=a+b+c+d+e+f+g+h+i+j+k+l+m
\end{equation}

\end{document}

在此处输入图片描述

但请看一下:»如何正确设置警报?« (德语,但看来 OP 确实懂德语)。

相关内容