cvitem \hbox 在 moderncv 中溢出

cvitem \hbox 在 moderncv 中溢出

是否可以更改 \cvitem{此文本太长}{...} 中放置第一个文本的框的长度或大小

不合适,而且看起来有点蠢。我收到以下消息:

Overfull \hbox (6.6563pt too wide) in paragraph at lines 102--102

那么,是否可以在 \cvitems 条目中的第一个框中添加 6.6563pt 长度的点。

平均能量损失

\documentclass[11pt,a4paper,sans]{moderncv} 


\moderncvstyle{classic}                           
\moderncvcolor{blue}                               

\usepackage[scale=0.75]{geometry}

\name{John}{Doe}


\begin{document}
\section{Basic info}
\cvitem{this is fine}{derp}
\cvitem{verylongworddd}{Derpderpdep}
\end{document}

第二项有点太长,不适合 cvitem 框。我可以让单词适合那里并更好地对齐吗?

答案1

左列的宽度存储在参数中

\hintscolumnwidth

右列的宽度是使用这个来计算的,因此你可以这样做

\documentclass[11pt,a4paper,sans]{moderncv}
\usepackage[scale=0.75]{geometry}

\moderncvstyle{classic}
\moderncvcolor{blue}

\addtolength{\hintscolumnwidth}{6.7pt}

\name{John}{Doe}


\begin{document}
\section{Basic info}
\cvitem{this is fine}{derp}
\cvitem{verylongworddd}{Derpderpdep}

\end{document}

使用比上次运行期间获得的最大过满量稍多的量。希望这不会破坏右侧栏中的段落。

相关内容