简历问题:如果我使用 \documentclass{moderncv} 和 \moderncvtheme{casual},该如何删除我名字下方的水平线?

简历问题:如果我使用 \documentclass{moderncv} 和 \moderncvtheme{casual},该如何删除我名字下方的水平线?

我使用 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}}                                   
  {}                                                                            
  {}                                                                            
  {}

相关内容