我怎样才能在某一页上添加页脚,使得页脚上方出现一个栏?

我怎样才能在某一页上添加页脚,使得页脚上方出现一个栏?

我怎样才能将页脚添加到精确的一页(即第一页)上,以便在页脚上有一个条?

我看到有人说要使用用户包 fancyheadings。然而这会改变部分布局,并在每个页面上添加一些内容。

答案1

该软件包fancyheadings已经过时好几年了。实际上,这样做与 的\usepackage{fancyheadings}作用相同\usepackage{fancyhdr}

诀窍是为第一页定义一种特殊的样式并发出\thispagestyle{firstpage}

\documentclass{article}

\usepackage{fancyhdr}
\usepackage{lipsum} % mock text

\fancypagestyle{plain}{% emulate the plain style
  \renewcommand{\headrulewidth}{0pt}%
  \fancyhf{}% clear all fields
  \fancyfoot[C]{\thepage}%
}
\fancypagestyle{firstpage}{% a rule at the bottom
  \renewcommand{\headrulewidth}{0pt}%
  \renewcommand{\footrulewidth}{0.4pt}%
  \fancyhf{}% clear all fields
  \fancyfoot[L]{All rights reserved}%
}
\pagestyle{plain}

\begin{document}
\title{A paper}
\author{A. Uthor}
\maketitle
\thispagestyle{firstpage}

\lipsum[1-20] % fill some pages

\end{document}

在此处输入图片描述

相关内容