我遇到一个问题,如下图,我想把附录里的章节号去掉,但公式里的章节号要保留,试过很多次了。
答案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 确实懂德语)。