如何删除 overleaf 附录中的字母 (A)?

如何删除 overleaf 附录中的字母 (A)?

我正在尝试从附录中删除字母 A。我怎样才能单独保留附录单词?在此处输入图片描述

在此处输入图片描述

在此处输入图片描述 在此处输入图片描述

答案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}

在此处输入图片描述

相关内容