我的问题

我的问题

我的问题

fancyhdr是否可以在偶数页(第 1 页除外)的页面顶部很好地打印页眉(我使用)?

我为什么想要这个?

为什么这样?

我有一份横向的 A4 文档,我想用两个订书钉将其装订在纸张的长边上。这样当人们打开文档时,很自然地会希望在“倒置页面”的顶部看到页码和其他信息。

編輯

我的页脚定义为

\pagestyle{fancy}
\fancyhf{}
\setlength{\headheight}{0cm}
\renewcommand{\headrulewidth}{0pt}%
\renewcommand{\footrulewidth}{0.4pt}%
\lhead{}
\chead{}
\rhead{}
\cfoot{}
\lfoot{{\footnotesize EXAMPLE}}
\rfoot{{\footnotesize  \mbox{}\hfill \thepage /\pageref{LastPage}}}

看起来像这样

在此处输入图片描述

我希望“偶数页的页脚”(实际上=页眉)看起来相同,带有标尺,并且页码位于右上角。

是否可以?

答案1

您可以根据要装订的一侧尝试不同的放置方向:

\documentclass{article}

\usepackage{geometry}
\geometry{
  paper = a4paper,
  landscape,
  twoside
}
\usepackage{fancyhdr,graphicx,lipsum}

\pagestyle{fancy}
\fancyhf{}% Clear header/footer
\renewcommand{\headrulewidth}{0pt}
%\renewcommand{\footrulewidth}{0pt}% Default
\fancyhead[LO]{\makebox[0pt][r]{\rotatebox{90}{\thepage}}}% Page number on Left on an Odd page
\fancyhead[RE]{\makebox[0pt][l]{\rotatebox{-90}{\thepage}}}% Page numebr on Right on an Even page

\begin{document}

\lipsum[1-50]\lipsum[1-50]

\end{document}

相关内容