在页面顶部添加页眉

在页面顶部添加页眉

我只想在所有页面(或第一页)顶部添加一条简单文字,说明“仅供作者使用”。但是,我发现如何添加它不是很清楚!

这是我从这里借用的代码话题

\documentclass[conference]{IEEEtran}

\usepackage{fancyhdr, lipsum}
\fancyhf{}
\fancyfoot[R]{\bfseries{\thepage}}
\fancyfoot[C]{FOR AUTHOR ONLY}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\pagestyle{fancy}

\begin{document}
\title{Something}
\end{document}

问题是它会在底部所有页面预计第一页。

我该如何修复它?

答案1

如果您想在标题中使用,则必须使用\fancyhead而不是。\fancyfoot

另外,如果你只希望它用于第一页,请定义一种新样式,比如说mahmood

\fancypagestyle{mahmood}{%
   \fancyhf{} % clear all fields
   \renewcommand{\headrulewidth}{0pt}
   \fancyhead[C]{FOR AUTHOR ONLY}
}%

并发布

\makeatletter
\let\ps@IEEEtitlepagestyle\ps@mahmood
\makeatother

梅威瑟:

\documentclass[conference]{IEEEtran}

\usepackage{fancyhdr,lipsum}

\fancypagestyle{mahmood}{%
   \fancyhf{} % clear all fields
   \renewcommand{\headrulewidth}{0pt}
   \fancyhead[C]{FOR AUTHOR ONLY}
}%

\makeatletter
\let\ps@IEEEtitlepagestyle\ps@mahmood
\makeatother

\begin{document}
\title{Something}
\author{mahmood}
\maketitle
\lipsum[1-20]
\end{document} 

输出:

在此处输入图片描述

如果您希望所有页面都使用它,请添加

\pagestyle{mahmood}

在文档的开头。

相关内容