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