更改回忆录中 Bringhurst chapterstyle 的字体颜色

更改回忆录中 Bringhurst chapterstyle 的字体颜色

我想更改 Bringhurst chapterstyle 中章节标题的颜色。下面的方法应该可行,但显然我误解了某些内容,无法使其工作,如果能提供任何指点,我将不胜感激。

\documentclass[a4paper]{memoir} 
\usepackage{color}

\begin{document} 

\chapterstyle{bringhurst}
\renewcommand\chaptitlefont{}{\color{red}}

\chapter{test} 

Some text here

\end{document}

答案1

我使用手册的第 362 页作为起点,但必须纠正一个严重的拼写错误({##1}——正确的是{#1})。

\documentclass[a4paper]{memoir}

\usepackage{color}

\begin{document} 

\chapterstyle{bringhurst}
\renewcommand{\printchaptertitle}[1]{%
  \memRTLraggedright\Large\scshape\MakeLowercase{\textcolor{red}{#1}}%
}

\chapter{test}

Some text here

\end{document}

相关内容