花式标题行

花式标题行

我想构建一个如下所示的标题行。

在此处输入图片描述

我该怎么做?fancyhdr支持这种标题行吗?

答案1

可以fancyhdr通过重新定义来完成\headrule

\documentclass{article}
\usepackage{fancyhdr}
\usepackage{xcolor}
\makeatletter
\def\thickhrulefill#1{\leavevmode\leaders\hrule height#1\hfill\kern\z@}
\makeatother
\pagestyle{fancy}
\fancyhead[R]{e-ISSN}
\renewcommand{\headrule}{%
    \color{red!33!black}\vspace{-8pt}%
    \thickhrulefill{.6pt}

    \vspace{-9pt}\thickhrulefill{2.4pt}%
}
\begin{document}
A page to show the header. 
\end{document}

相关内容