没有“分词”,改变 cvitem 的长度

没有“分词”,改变 cvitem 的长度

我使用的是 moderncv 的经典模板。我想让 cvitem 名称(用红色标记)不断裂,并且我不想更改字体大小,只想让项目名称更长。 在此处输入图片描述

我搜索了好几次,但还是没找到解决方案。有人遇到过这个问题吗?非常感谢你的帮助。

祝好,Melo

答案1

classic的样式使用moderncv两列来布局简历。第一列采用命令规则\section,第二列采用文本。

要更改第一列的长度,可以使用命令

\setlength{\hintscolumnwidth}{3cm}

3cm并根据您的需要更改我的...

要在您的文档中添加德语变音符号,请添加

\usepackage[ngerman]{babel}

到您的代码。

拥有完整的 MWE

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

% moderncv themes
\moderncvstyle{classic} % casual, classic, banking, oldstyle and fancy; head 3, body 3
\moderncvcolor{blue} 

\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel} % <=========================================

\usepackage[scale=0.75]{geometry}

% personal data
\name{Max}{Mustermann}
\title{Resumé title}
\address{street and number}{postcode city}{country}
\phone[mobile]{+1~(234)~567~890}
\phone[fixed]{+2~(345)~678~901}
\phone[fax]{+3~(456)~789~012}
\email{[email protected]}
\extrainfo{additional information}
\photo[64pt][0.4pt]{example-image-a}
\quote{Some quote}

\setlength{\hintscolumnwidth}{3cm} % <==================================


\begin{document}

\makecvtitle

\section{Persönliche Daten}
\cvitem{Geburtsdatum}{26.04.1089 in China}
\cvitem{Staatsangehörigkeit}{chinesisch}
\cvitem{Familienstand}{ledig}

\section{Education}
\cventry{year--year}{Degree}{Institution--3}{City--4}{\textit{Grade}--5}{Description--6}  % arguments 3 to 6 can be left empty
\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}

\section{Master thesis}
\cvitem{title}{\emph{Title}}
\cvitem{supervisors}{Supervisors}
\cvitem{description}{Short thesis abstract}

\end{document}

你得到了想要的结果:

希望的结果

答案2

在您的序言中使用\setlength{\hintscolumnwidth}{3cm}(您可以根据需要调整长度)应该可以解决这个问题。

相关内容