我正在寻找一种方法来更改文档主标题的颜色,而无需重新定义\maketitle
。 Google 搜索仅显示如何系统地更改不包含主标题的章节标题。
答案1
这是一个解决方案
\documentclass{article}
\usepackage{xcolor}
\title{\textcolor{blue}{The title}}
\author{Me}
\begin{document}
\maketitle
\end{document}
更新如果ams
使用类
\documentclass{amsart}
\usepackage{xcolor}
\colorlet{BLUE}{blue}
\title{\textcolor{blue}{The title}}
\author{Me}
\begin{document}
\maketitle
\end{document}