在LaTeX 和 Friends 的页眉该fancyhdr
包用于创建 LaTeX and Friends 书籍的页眉。如何使用memoir
类以及在章节开始的第一页上执行此操作?
梅威瑟:
\documentclass[a4,twoside]{memoir}
\usepackage{lipsum}
\nouppercaseheads
\makepagestyle{mystyle}
\setlength{\headwidth}{\dimexpr\marginparsep+\marginparwidth\relax}
\makerunningwidth{mystyle}{\headwidth}
\makeevenhead{mystyle}{\thepage\quad\smash{\rule[-0.2ex]{1pt}{4cm}}\quad\textsc{\chaptername~\thechapter}}{}{}
\makeoddhead{mystyle}{}{}{\textsc{\leftmark}\quad\smash{\rule[-0.2ex]{1pt}{4cm}}\quad\thepage}
\makeatletter
\makepsmarks{mystyle}{%
\createmark{chapter}{left}{nonumber}{\@chapapp\ }{.\ }}
\makeatother
\makepagestyle{plain}
\makerunningwidth{plain}{\dimexpr\marginparsep+\marginparwidth\relax}
\makeevenfoot{plain}{\textsc{\leftmark}\quad\smash{\rule[-0.2ex]{1pt}{4cm}}\quad\thepage}{}{}
\pagestyle{mystyle}
\begin{document}
\chapter{Test Chapter}
\lipsum[1]
\section{Test Section}
\lipsum[1-20]
\end{document}
答案1
该类memoir
使用 pagestylechapter
作为章节的第一页。因此你可以这样做
...
\pagestyle{mystyle}
\aliaspagestyle{chapter}{mystyle}
\begin{document}
...
我不确定您为什么将plain
页面样式重新定义为与 相同,但如果您仍然需要它,mystyle
最好将其替换为。\aliaspagestyle{plain}{mystyle}