如何改变 moderncv 中蓝线的长度

如何改变 moderncv 中蓝线的长度

我正在使用编写简历moderncv;我遇到了这种自动更正,其中句子分为两行,如下所示:

在此处输入图片描述

我想要做的是在同一行设置“出生日期和地点”,并相应地延长蓝线。

你能告诉我我该怎么办吗?

代码如下:

\documentclass[11pt,a4paper,sans,'roman']
\usepackage[T1]{fontenc}                    
\usepackage[latin1]{inputenc}             
\usepackage[english]{babel}                  
\usepackage{microtype}                     
%\usepackage{lipsum}                         
\moderncvstyle{classic}                                                                 
\moderncvcolor{blue}                        
%\nopagenumbers{}                            
\usepackage[scale=0.80]{geometry}            
%\setlength{\hintscolumnwidth}{3cm}          
%\setlength{\makecvtitlenamewidth}{10cm}     

\begin{document}
\section{Personal Information}
\cvitem{Birth Date and Place}{February 7, 1698; Lovere, Como, Giamaica.}
\cvitem{Address}{via pinco~20/b, Pallo Figa, Cazzo, Italy}
\end{document}

答案1

您应该\hintscolumnwidth根据自己的需要进行调整:

在此处输入图片描述

\documentclass[sans]{moderncv}
\moderncvstyle{classic}
\moderncvcolor{blue}
% Set width of "hints column" to match width of "Birth Date and Place"
\AtBeginDocument{\settowidth{\hintscolumnwidth}{Birth Date and Place}}
\firstname{Firstname}
\lastname{Lastname}
\begin{document}
\section{Personal Information}
\cvitem{Birth Date and Place}{February 7, 1698; Lovere, Como, Giamaica.}
\cvitem{Address}{via pinco~20/b, Pallo Figa, Cazzo, Italy}
\end{document}

的设置\hintscolumnwidth被延迟到文档的开始处,此时字体才被正确设置。

相关内容