是否可以在主规则中添加彩色文本(空格或彩色框)?

是否可以在主规则中添加彩色文本(空格或彩色框)?

我打算在各节前面使用小彩色框来识别文本位于哪个标题级别,并希望读者能够通过颜色快速引用标题级别。我的想法是在每个奇数标题规则中实现一条小线,以保存标题颜色的顺序。是否可以添加下面的代码,以便我得到图中所示的结果:

\makeheadrule{standard}{\textwidth}{\normalrulethickness}

在此处输入图片描述

我只是在这里随机挑选颜色,但如果可能的话,我会选择色盲者可以区分的颜色。

答案1

我想最简单的方法是将彩色方块添加到\makeoddhead

\documentclass{memoir}

\makepagestyle{standard} % Make standard pagestyle

\setlength{\headheight}{13.60005pt}

\makeatletter                 % Define standard pagestyle
\makeevenfoot{standard}{}{}{} %
\makeoddfoot{standard}{}{}{}  %
\makeevenhead{standard}{\bfseries\thepage\normalfont\qquad\small\leftmark}{}{}
\makeoddhead{standard}{}{}{%
    {\color{yellow}\rule{1em}{1em}}%
    {\color{orange}\rule{1em}{1em}}%
    {\color{red}\rule{1em}{1em}}%
    {\color{purple}\rule{1em}{1em}}%
    {\color{blue}\rule{1em}{1em}}%
    {\color{cyan}\rule{1em}{1em}}%
    {\color{green}\rule{1em}{1em}}%
    \hfill\small\rightmark\qquad\bfseries\thepage}
\makeheadrule{standard}{\textwidth}{\normalrulethickness}
\makeatother                  %

\makeatletter
\makepsmarks{standard}{
\createmark{chapter}{both}{shownumber}{\@chapapp\ }{ \quad }
\createmark{section}{right}{shownumber}{}{ \quad }
}
\makeatother                               %

\nouppercaseheads
\pagestyle{standard}      

\usepackage{xcolor}
\usepackage{lipsum} % Just to put in some text

\begin{document}
\frontmatter
\chapter{Introduction}
\lipsum[1-12]
\end{document}

在此处输入图片描述

相关内容