moderncv에서 개인 정보와 인용문 사이의 공간 줄이기

moderncv에서 개인 정보와 인용문 사이의 공간 줄이기

패키지를 사용하여 이력서를 작성할 때 moderncv개인 정보(예: 전화, 이메일 등)와 견적 사이의 공간을 줄이는 방법은 무엇입니까? 이것우편똑같은 질문을 했는데 솔루션에서 라텍스 코드를 시도했는데 더 이상 작동하지 않는 것 같습니다. 이에 대한 최신 솔루션이 있는지 궁금합니다.

답변1

이 코드는 인용문 앞에 음수 공백(이 예에서는 -2em)을 추가하여 인용문 스타일을 수정하므로 인용문과 이전 정보 사이의 공백을 제어합니다.

(moderncv 2022-02-21 v2.3.1)

ㅏ

% !TeX TS-program = pdflatex

\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{banking}
\moderncvcolor{blue}
\usepackage[utf8]{inputenc}
\usepackage[scale=0.85, top=1.5cm, bottom=1cm]{geometry}

\name{John}{Doe}
\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]}
\homepage{www.johndoe.com}
\social[linkedin]{john.doe}
\social[twitter]{jdoe}
\social[github]{jdoe}
\extrainfo{additional information}


\quote{As any dedicated reader can clearly see, the Ideal of practical reason
    is a representation of, as far as I know, the things in themselves; as I
    have shown elsewhere, the phenomena should only be used as a
    canon for our understanding. }


\renewcommand*{\quotestyle}[1]{{\vspace*{-2em}\quotefont\textcolor{color1}{#1}}} % added <<<<<<<<<<<<<

\begin{document}
    \makecvtitle
    
    \section{Education}
    \cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}
    \cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}
            
\end{document}

관련 정보