答案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}
(您可以根据需要调整长度)应该可以解决这个问题。