Moderncv - 날짜를 줄 바꿈으로 정렬

Moderncv - 날짜를 줄 바꿈으로 정렬

저는 moderncv를 사용하여 LaTeX로 이력서를 작성하고 있습니다. 더 긴 날짜(예: 03/2021-08/2023)로 인해 줄바꿈이 발생합니다. 줄 바꿈은 괜찮지만 월이 왼쪽 정렬되거나 연도가 오른쪽 정렬되도록 두 줄을 정렬하고 싶습니다(하이픈이 두 번째 줄로 이동됨).

MWE:

   \documentclass[11pt,a4paper,sans,german]{moderncv} 
\moderncvstyle{classic}                            
\moderncvcolor{orange}                             
\renewcommand*{\emailsymbol}         {}
\renewcommand*{\mobilephonesymbol}   {}
\usepackage[utf8]{inputenc}                       
\usepackage[scale=0.75,a4paper]{geometry}
\usepackage[german]{babel}
\usepackage{pdfpages}
\usepackage{graphicx}
\usepackage{ragged2e}

%----------------------------------------------------------------------------------
%            personal data
%----------------------------------------------------------------------------------
\firstname{Name}
\familyname{NAME}
\title{}                               
\address{Street 123}{12344 City}{Country}       
\mobile{+12 3456789012}                          
\email{[email protected]}
\photo[96pt][0pt]{example-image-a}

\begin{document}
    \vspace*{-20mm}
    \makecvtitle
    \vspace*{-12mm}
    \section{Education}
        \cventry{since 10/20xx}{M.A XY}{University of XY}{}{Grade: Y.Y}{Focus: Subject, Thesis: This is my thesis title}
        \cventry{10/20xx -- 09/20xx}{B.A XY}{University of XY}{}{Grade: Y.Y}{Focus: Subject, Thesis: Thesis: This is my thesis title}
        \cventry{09/20xx -- 07/20xx}{Higher Education Entrance Qualification (A-levels)}{School}{}{}{}
        \vspace*{-3mm}

    \section{Working Experience}
    \cventry{10/20xx -- 03/20xx}{Intern}{Company}{Division}{}{Here comes a list of my tasks}    
    \cventry{10/20xx -- 03/20xx}{Research Assistant}{Chair for XY}{}{}{Here comes a list of my tasks}
    \cventry{09/20xx -- 12/20xx}{Intern}{Company}{}{}{Here comes a list of my taks}
    
\end{document}

이것은 내 MWE에서 생성된 출력입니다.

가장 좋은 방법은 "20xx 이후"라는 줄을 형성하도록 모든 월/연도를 왼쪽 정렬하는 것입니다.

편집하다: 를 사용하면 \vspace*{-3mm}나의 모든 정보를 한 페이지에 담는 데 도움이 됩니다. 따라서 현재 날짜 정렬을 제외하고 모든 것이 완벽하게 맞으므로 열 너비를 변경하고 싶지 않습니다.

답변1

해결책은 \\줄 바꿈이 필요한 곳에 추가하는 것입니다. 예를 들어, 10/20xx -- 09/20xx로 바꾸십시오 10/20xx\\-- 09/20xx.

관련 정보