我使用 LaTeX 撰写简历。现在我需要删除我名字下方的横线(此线仅出现在简历第一页的顶部)。我该怎么做?提前谢谢!
答案1
你提到的规则是通过\makecvtitle
使用
\color{color2!50}\rule{\textwidth}{.25ex}
最快的解决方案是修补\makecvtitle
以抑制规则:
\documentclass{moderncv}
\moderncvtheme{casual}
\usepackage{etoolbox}
\patchcmd{\makecvtitle}
{\color{color2!50}\rule{\textwidth}{.25ex}}
{}
{}
{}
\name{John}{Doe}
\begin{document}
\makecvtitle
\section{Test section}
\end{document}
答案2
使用最新的 moderncv,补丁\makecvhead
:
\patchcmd{\makecvhead}
{\color{color2!50}\rule{\textwidth}{.25ex}}
{}
{}
{}