Latex: 设置页眉页脚

使用fancyhdr来实现

\documentclass{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{}
\chead{}
% bfseries
\rhead{\bfseries The performance of new graduates}
\lfoot{From: K. Grant}
\cfoot{To: Dean A. Smith}
\rfoot{\thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\begin{document}
test!
\end{document}

references

  1. [转载]在LATEX中设置页眉页脚以及页码
  2. LaTeX 页眉页脚的设置

你可能感兴趣的:(Latex: 设置页眉页脚)