我有以下最少的代码,其中有一些章节和一些附录。
\documentclass[oneside]{book}
\usepackage[toc, page, title]{appendix}
\begin{document}
\tableofcontents
\include{chapter1}
\include{chapter2}
\begin{appendices}
\include{appendix1}
\include{appendix2}
\end{appendices}
\end{document}
这将在附录开始前插入一个名为“附录”的页面,如下所示:
我使用了不同的字体颜色对于我的章节和部分标题,那么是否可以更改此页面的字体颜色,以便以自定义颜色显示“附录”(以便与我的章节和部分标题相匹配)?
答案1
我已经解决了这个问题,但可能还有更好的解决方案。
基于:
在序言中添加以下内容即可:
\renewcommand\appendixpagename{\color{DESIRED_COLOUR}{Appendices}}
例如,将颜色改为蓝色:
\renewcommand\appendixpagename{\color{blue}{Appendices}}