koma-moderncvclassic에서 오른쪽/기본 열의 크기를 변경하는 방법은 무엇입니까?

koma-moderncvclassic에서 오른쪽/기본 열의 크기를 변경하는 방법은 무엇입니까?

내 이력서를 다시 작성하기 위해 koma-moderncvclassic 패키지를 사용하고 있습니다. 열 너비가 페이지 레이아웃과 각각 머리글 너비와 일치하도록 오른쪽 열의 크기를 어떻게 조작할 수 있습니까? 여기 내 MWS가 있습니다.

\documentclass[%
parskip=half,%
fontsize=11pt,%
a4paper,%
pagesize,%
headinclude,footinclude,%
headings=normal,%
]{scrreprt}

\newcommand*{\firstname}{Max}
\newcommand*{\familyname}{Muster}
\newcommand*{\addressstreet}{Muster Allee 111}
\newcommand*{\addresscity}{11111 Musterstadt}
\newcommand*{\address}[2]{\addressstreet{#1}\addresscity{#2}}
\newcommand*{\mobile}{+49 1234567}
\newcommand*{\email}{[email protected]}

%left column width (default value: 2,79cm)
\newlength\myhintscolumnwidth%
\setlength\myhintscolumnwidth{.21\textwidth}

\usepackage[myblue]{koma-moderncvclassic} 

\usepackage{geometry}
\geometry{left=2cm,right=2cm,top=2cm,bottom=2cm} 

\usepackage{scrpage2}
\pagestyle{scrheadings}
\clearscrheadfoot
\ohead{\footnotesize \firstname~\familyname\\ \addressstreet,~\addresscity \\\emailsymbol~\email~\phonesymbol~\mobile}
\setheadsepline{0.3pt} 

\begin{document}

\section{Work experience}
\cventry{01/2015 - 04/2015}{degree/jobtitle}{institution/employer}{localization}{optional: grade/...}{optional: comment/job description}
\cventry{01/2015 - 04/2015}{degree/jobtitle}{institution/employer}{localization}{optional: grade/...}{optional: comment/job description}

\section{Education}
\cventry{01/2015 - 04/2015}{degree/jobtitle}{institution/employer}{localization}{optional: grade/...}{optional: comment/job description}
\cventry{01/2015 - 04/2015}{degree/jobtitle}{institution/employer}{localization}{optional: grade/...}{optional: comment/job description}

\section{IT Skills}
\cvline{Very good}{MS Office (Excel, Word, PowerPoint, Outlook), OpenOffice. MS Office (Excel, Word, PowerPoint, Outlook), OpenOffice.}
\cvline{Good}{MS SharePoint, MS Project, MS Office (Excel, Word, PowerPoint, Outlook) MS Office (Excel, Word, PowerPoint, Outlook)}

\end{document}

답변1

패키지 순서를 변경합니다.

\usepackage{geometry}
\geometry{left=2cm,right=2cm,top=2cm,bottom=2cm} 

\usepackage[myblue]{koma-moderncvclassic} 

따라서 패키지는 결과에 따라 koma-moderncvclassic를 계산할 수 있습니다 .maincolumnwidthtextwidth

여기에 이미지 설명을 입력하세요

관련 정보