我正在使用这个模板
\documentclass[11pt,a4paper,sans,]{moderncv}
\moderncvstyle[left]{casual}
\renewcommand*{\titlefont}{\LARGE\mdseries}
\moderncvcolor{grey}
\usepackage[scale=0.75]{geometry}
\firstname{First}
\familyname{Last}
\title{Title}
\address{address 1}{address 2}
\mobile{0000000}
\email{email}
\begin{document}
\makecvtitle
content
\end{document}
有没有办法删除标题中的水平线?
我看到了类似的东西这里但不确定这是否适用于这里。我还发现了这个
{\color{color2!50}\rule{\textwidth}{.25ex}}%
moderncvheadiis.sty但我不知道如何使用它。
答案1
尝试这样做:
\documentclass[11pt,a4paper,sans,]{moderncv}
\moderncvstyle[left]{casual}
\renewcommand*{\titlefont}{\LARGE\mdseries}
\moderncvcolor{grey}
\usepackage[scale=0.75]{geometry}
%Add this package:
\usepackage{xpatch}
\firstname{First}
\familyname{Last}
\title{Title}
\address{address 1}{address 2}
\mobile{0000000}
\email{email}
%Add this command
\xpatchcmd{\makecvhead}{\color{color2!50}\rule{\textwidth}{.25ex}}{}{}
\begin{document}
\makecvtitle
content
\end{document}
我们正在使用 xpatch 包替换您已经找到的命令