使用 fancyhdr 的两行标题和两种字体大小

使用 fancyhdr 的两行标题和两种字体大小

我正在尝试使用 fancyhdr 创建具有以下格式的多行标题:在此处输入图片描述

我在谷歌和这个网站上搜索了 15 个小时,但没有找到解决方案

请注意,在图像中,标题第一行的字体大小高于第二行的字体大小。

还请注意,在图像中,标题两行的字体与正文相比都很暗淡。

我的 MWE 如下:

\documentclass{article}

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\fancyhead[L]{}
\fancyhead[C]{Anale. Seria Informatica. Vol. XVI fasc.1-2018\\Anale. Computer Science Series $16^{th}$ Tome $1^{st}$ Fasc. -2018}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\renewcommand\headrule{\begin{minipage}{1\textwidth}
\hrule width \hsize height 5pt \kern 1mm \hrule width \hsize   
\end{minipage}\par}%


\begin{document}
headers alone, no footer.
\end{document}

我的想法如下:

  1. 我希望标题第一行的字体比标题第二行的字体大。
  2. 我希望页眉和页眉规则的两行字体都比文档正文中的文本淡。

请帮忙。

答案1

这是我可以在 MWE 中提供的解决方案

    \documentclass{article}    
    \usepackage{fancyhdr}
    \pagestyle{fancy}
    \fancyhf{}
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    \fancyhead[L]{}
    \fancyhead[C]{XXXXXXX. XXXXX XXXX. YYYYY. YYY YYYY. ZZZZZZ\\ {\small xxxx. 
    xxxxxxxx xxxxxxx xxxxxx $16^{th}$ Tome $1^{st}$ Fasc. -2018}}
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    \renewcommand\headrule{\begin{minipage}{1\textwidth}
    \hrule width \hsize height 3pt \kern 0.3mm \hrule width \hsize   
    \end{minipage}\par}%
    \begin{document}
    this is how I can go
    \end{document}

相关内容