答案1
只要你只有一个附录章节而没有其他编号元素,你可以简单地使用
\addchap{\appendixname}
但是,如果您还有章节、方程式等,则需要设置章节“编号”:
\documentclass[paper=a5,openany]{scrbook} % a5 and openany only for screenshot
\begin{document}
\tableofcontents
\chapter{Foo}
\section{bar}
\section{baz}
\appendix
\renewcommand*{\thechapter}{A}
\addchap{\appendixname}
\section{bla}
\section{blabla}
\begin{equation}
a=b
\end{equation}
\end{document}