我得到了第 1 章章节名称。
但如何获取附录 A 附录名称
\documentclass{scrbook}
\renewcommand*{\chapterformat}{%
Chapter~\fontsize{80}{88}\selectfont\thechapter\enskip}
\begin{document}
\chapter{Name of chapter}
\appendix
\chapter{Name of appendix}
\end{document}
答案1
\@chapapp
包含正确的字符串“Chapter”或“Appendix”(或它们的惯用本地化):
\documentclass{scrbook}
\makeatletter
\renewcommand*{\chapterformat}{%
\@chapapp~\fontsize{80}{88}\selectfont\thechapter\enskip}
\makeatother
\begin{document}
\chapter{Name of chapter}
\appendix
\chapter{Name of appendix}
\end{document}