恢复页眉 - 格式化页眉中的行

恢复页眉 - 格式化页眉中的行

在简历类中,创建文件时,页眉中是一条长水平线。并且此行出现在每一页上。我如何格式化页眉,使该行仅出现在第一页,而不出现在下一页?以下是示例:在此处输入图片描述

本示例的代码如下:

\documentclass[margin,line,a4paper]{resume}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[pdftex]{color,graphicx}
\usepackage{graphicx,wrapfig}
\usepackage{url}
\usepackage[colorlinks=true, a4paper=true, pdfstartview=FitV,
linkcolor=blue, citecolor=blue, urlcolor=blue]{hyperref}
\pdfcompresslevel=9
\usepackage{fancyhdr}
\pagestyle{fancy}

\begin{document}
  I want this upper line
  \section{\mysidestyle Section}\vspace{1mm}
    \begin{description}
    \item This is the first page. And the above line is ok.
    \end{description}
  \newpage
  This is the next page. I don't want this line.


\end{document}

答案1

使用

\usepackage{fancyhdr}% http://ctan.org/pkg/fancyhdr
\pagestyle{plain}% Set default page style
\thispagestyle{fancy}% Set page style of first page

在您的序言中。plain样式设置为默认页面样式,而\thispagestyle{fancy}(包括页眉)仅为第一页设置。

在示例中,fancyplain非常相似。如果它们不是,并且您仅有的想要删除页眉规则,那么您可以从第二页开始将以下内容添加为文档的一部分:

\renewcommand{\headrulewidth}{0pt}% Remove current/subsequent page style header rule

相关内容