如何像第 1 章一样打印附录 A

如何像第 1 章一样打印附录 A

我得到了第 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}

enter image description here

相关内容