使用 fancyhdr 包时,Latex 上的每页都会重复出现页眉部分。我只想在第一页显示页眉,如何避免重复?

使用 fancyhdr 包时,Latex 上的每页都会重复出现页眉部分。我只想在第一页显示页眉,如何避免重复?

我使用 overleaf 上的“data-science-tech-resume-template”模板来构建自己的简历。“_header.tex”文件包含“fancyhdr”包的使用,并使用 lheader 和 rheader 来显示我的姓名、电子邮件 ID、联系方式等。但是,这个标题部分在每一页上都会重复出现。 第1页

第2页

以下是 _header.tex 的代码:

\RequirePackage{fancyhdr}
\fancypagestyle{plain}{%
\fancyhf{}
\lhead{

        \HUGE \skills \name \vspace{-.32em}
        \\ % feel free to adjust vspace to 0 
    {
            \color{highlight} \Large{\role}
        }
} 
\rhead{
    
        \city \\  % city 
        \phone \\ % PHONE    
        \href{mailto:\email}{\email} \\
        % \href{https://github.com/\github}{github.com/\github} \\% Github
        \href{https://www.linkedin.com/in/\LinkedIn}{linkedin.com/in/\LinkedIn}
} 
\renewcommand{\headrulewidth}{1pt}% 2pt header rule
\renewcommand{\headrule}{\hbox to\headwidth{%
\color{highlight}\leaders\hrule height \headrulewidth\hfill}}
}
\pagestyle{plain}

\setlength{\headheight}{90pt}
\setlength{\headsep}{5pt}

相关内容