答案1
我只能猜测文件里面有什么。遵循一个可以实现您想要的最小工作示例。您可以根据需要多次重新定义章节标题的布局,因此您可以在切换到附录后立即进行重新定义。但请记住,一致性通常更好。
\documentclass{report}
\usepackage{appendix}
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\Huge\bfseries\filcenter}
{{\fontsize{50pt}{1em}\vspace{-4.2ex}\selectfont
\textnormal{\thechapter}}}{1ex}{}[]
\begin{document}
\tableofcontents
\chapter{Wombat}
\begin{appendices}
\titleformat{\chapter}[display]
{\Huge\bfseries\filcenter}
{{\fontsize{50pt}{1em}\vspace{-4.2ex}\selectfont
\textnormal{Appendix~\thechapter}}}{1ex}{}[]
\chapter{Capybara}
\end{appendices}
\end{document}