奇数页和偶数页有不同的页眉

奇数页和偶数页有不同的页眉

请帮我设计奇数页和偶数页具有不同标题的页面:

我的意思是我希望

  • 奇数页上有作者姓名。
  • 偶数页上的文章名称。

我该怎么做?

非常感谢,

答案1

此请求仅在标头上下文中才有效。因此,以下是fancyhdr使用标准文档类实现(article):

在此处输入图片描述

\documentclass[twoside]{article}
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\usepackage{fancyhdr}% http://ctan.org/pkg/fancyhdr
\fancypagestyle{mypagestyle}{%
  \fancyhf{}% Clear header/footer
  \fancyhead[OC]{An Author}% Author on Odd page, Centred
  \fancyhead[EC]{A title}% Title on Even page, Centred
  \fancyfoot[C]{\thepage}%
  \renewcommand{\headrulewidth}{.4pt}% Header rule of .4pt
}
\pagestyle{mypagestyle}
\title{A title}
\author{An Author}
\begin{document}
\maketitle
\section{A section}\lipsum[1-20]
\end{document}

twoside需要允许Odd 和Even 侧改变页面样式,但您很可能已经使用了此类选项。

由于\maketitle宏是“自毁的”,从而会删除\@author\@title,您需要将其复制到不同的宏中,或者在相应的标题中手动写入作者和标题。

相关内容