2つの罫線が入るヘッダーを作りたいのですが…
これまでのところ、次のものがあります:
\documentclass[a4paper,12pt,oneside,showframe]{memoir}
\setlrmarginsandblock{2.5cm}{2cm}{*}
\setulmarginsandblock{3cm}{*}{1}
\checkandfixthelayout
\chapterstyle{bianchi}
\usepackage{blindtext, fontspec}
\nouppercaseheads
\makepagestyle{mystyle}
\setheaderspaces{*}{0.5cm}{*}
\makeoddhead{mystyle}{\bfseries\sectionmark / \itshape\leftmark}{ \textbf{FooBar~--} \itshape any custom fixed text \\}{\bfseries Page | \itshape\thepage}
\makeoddfoot{mystyle}{}{}{}
\makepsmarks{mystyle}{%
\createmark{chapter}{left}{nonumber}{}{}}
\pagestyle{mystyle}
\begin{document}
\Blinddocument
\Blinddocument
\end{document}
2 行のヘッダーは取得できますが、2 つのルールを取得するかどうかはわかりません。また、ヘッダーとフッターをアクアに変更する方法はありますか?
答え1
2 つのルールに対する回答。MWE に追加/変更された次のコードにより、見出しの 1 行目と 2 行目の間に 1 つのルールが生成され、見出しの下部にルールが生成されます。
...
\setheadfoot{60pt}{20pt} % your header is too large
\checkandfixthelayout
...
\makeheadrule{mystyle}{\textwidth}{0.4pt} % rule at the bottom
\makeoddhead{mystyle}{\bfseries\sectionmark / \itshape\leftmark}%
{\textbf{FooBar---} \itshape any custom fixed text \\[0.5\baselineskip]}%
{\rule{\textwidth}{0.4pt} \bfseries Page | \itshape\thepage
}
...