두 가지 판결을 내리는 헤더를 만들고 싶습니다.
지금까지 내가 가진 것은 다음과 같습니다.
\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}
두 개의 줄이 있는 헤더가 표시되지만 두 개의 규칙이 적용되는지 잘 모르겠습니다. 머리글, 바닥글을 아쿠아로 바꾸는 방법도 있나요?
답변1
두 가지 규칙에 대한 답변입니다. MWE에 추가/변경된 다음 코드 비트는 제목의 첫 번째 줄과 두 번째 줄 사이에 단일 규칙과 제목 하단의 규칙을 생성합니다.
...
\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
}
...