在目录和文档中显示附录标题

在目录和文档中显示附录标题

在此处输入图片描述

下面的代码生成显示的目录页和附录标签。我希望第一行附录不带数字。然后我希望附录 1 标记为 A1,附录 2 标记为 A2。

这里有人问了类似的问题:

多个附录,分布在整个文档中

但是我尝试过使用附录包,但没有什么区别?

\documentclass{report}
%\usepackage{appendix}


%\makeatletter
%  \@addtoreset{chapter}{part}
%  \@addtoreset{@ppsaveapp}{part}
%\makeatother

\begin{document}

\tableofcontents
%\begin{appendices}
\section{Appendices}
\subsection{appendix 1}
\subsection{appendix 2}
%\end{appendices}
\end{document}

答案1

只是一个提议——附录没有一般规则,所以有时做出有根据的猜测期望/要求什么。

\documentclass{report}
\usepackage{tocloft}%
\usepackage{blindtext}

\addtolength{\cftchapnumwidth}{10pt}%
\begin{document}

\tableofcontents
\chapter{Dummy}
\blindtext

\setcounter{chapter}{0}
\chapter*{Appendices}

\addcontentsline{toc}{part}{Appendices}%
\renewcommand{\thechapter}{A\arabic{chapter}}
\chapter{Super Appendix 1}%
\chapter{Super Appendix 2}%
\end{document}

在此处输入图片描述

相关内容