答案1
使用tocloft
包。例如,如下面的 MWE 所示:
% tocappprob.tex SE 552614
\documentclass{article}
\usepackage{tocloft}
\begin{document}
\tableofcontents
\section{Conclusion}
\appendix
\renewcommand{\thesection}{Appendix \Alph{section}}
\addtocontents{toc}{\setlength{\cftsecnumwidth}{6em}} % increase the space for section numbers
\section{Statistics}
\end{document}
除了包之外,关键行是\addtocontents{toc}{...}
在目录中插入命令以增加附录章节编号的空间。
\documentclass...
如果您提供了 MWE(从到),那将会很有帮助\end{document}
。我不得不猜测您的代码可能是什么样子,但我认为我错了。无论如何,tocloft
应该\addtocontents{toc}{...}
是您所需要的。