Como alterar o tamanho da coluna direita/principal no koma-moderncvclassic?

Como alterar o tamanho da coluna direita/principal no koma-moderncvclassic?

Estou usando o pacote koma-moderncvclassic para recriar meu currículo. Como posso manipular o tamanho da coluna do lado direito para que a largura da coluna corresponda ao layout da página, respectivamente, à largura do cabeçalho? Aqui meu 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}

Responder1

Altere a ordem dos pacotes:

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

\usepackage[myblue]{koma-moderncvclassic} 

Assim, o pacote koma-moderncvclassicpode calcular maincolumnwidthdependendo do resultado textwidth.

insira a descrição da imagem aqui

informação relacionada