页眉或作者姓名和简称

页眉或作者姓名和简称

我正在使用a4paper环境来编写一篇科学文章,我想制作一个页眉,在每页上交替显示作者姓名和简称,同时删除所有页码。我们确实通过使用删除了页码,\pagestyle{empty}但无法执行页眉操作。我们应该如何制作一个在每页上交替显示姓名和标题的页眉?

答案1

您可以使用fancyhdr包;如果twoside允许使用类选项,您可以这样说(我将信息放在标题的中心,但您可以将它放在其中一个边距处):

\documentclass[twoside]{article}
\usepackage{fancyhdr}
\usepackage{lipsum}% just to generate text for the example

\newcommand\shorttitle{The Short Title}
\newcommand\authors{Author A, Author B and AuthorC}

\fancyhf{}
\renewcommand\headrulewidth{0pt}
\fancyhead[CE]{\small\scshape\shorttitle}
\fancyhead[CO]{\small\scshape\authors}
\pagestyle{fancy}

\begin{document}

\lipsum[1-20]

\end{document}

如果twoside不允许,你可以这样说:

\documentclass{article}
\usepackage{fancyhdr}
\usepackage{lipsum}% just to generate text for the example

\newcommand\shorttitle{The Short Title}
\newcommand\authors{Author A, Author B and AuthorC}

\fancyhf{}
\renewcommand\headrulewidth{0pt}
\fancyhead[C]{%
\ifodd\value{page}
  \small\scshape\authors
\else
  \small\scshape\shorttitle
\fi
}
\pagestyle{fancy}

\begin{document}

\lipsum[1-20]

\end{document}

两个连续页面的页眉图像:

在此处输入图片描述

相关内容