回忆录:使用复制的页面样式时更改标题规则的颜色

回忆录:使用复制的页面样式时更改标题规则的颜色

使用回忆录类,我试图按照建议更改标题规则的颜色在回忆录中设置页眉和页脚规则颜色。但是,以下代码不会改变规则的颜色:

\documentclass{memoir}

\usepackage{color}

\begin{document}
\copypagestyle{mystyle}{ruled}

\makeheadfootruleprefix{mystyle}{\color{Bittersweet}}{\color{PineGreen}}

\pagestyle{mystyle}
foo
\end{document

在此处输入图片描述

答案1

您需要添加

\makeheadrule{mystyle}{\textwidth}{\normalrulethickness}

此外,您使用的颜色是通过xcolor加载选项来定义的dvipsnames

梅威瑟:

\documentclass{memoir}

\usepackage[dvipsnames]{xcolor}

\begin{document}
\copypagestyle{mystyle}{ruled}

\makeheadfootruleprefix{mystyle}{\color{Bittersweet}}{\color{PineGreen}}
\makeheadrule{mystyle}{\textwidth}{\normalrulethickness}

\pagestyle{mystyle}
foo
\end{document} 

输出:

在此处输入图片描述

相关内容