moderncv で CV タイトルの余白と配置を設定する方法

moderncv で CV タイトルの余白と配置を設定する方法

私は moderncv クラスを使用して Latex で履歴書を作成しており、履歴書の本文の余白をタイトルと異なるものにしたいと考えています。しかし、余白を調整するとタイトルの余白も調整され、名前と電話番号/電子メール/住所の間隔が広すぎるため、見栄えが悪くなります。以下は私のコードの例です。

\documentclass[11pt,a4paper]{moderncv} % version 1.5.1

%\moderncvtheme[blue]{classic}  % used in version <= 0.15
\moderncvstyle{classic}
\moderncvcolor{black}
\usepackage{multicol}
\usepackage{vwcol} 
\usepackage{changepage}
\usepackage[scale=0.9, top=1.5cm, bottom=1cm, footskip=0.4cm]{geometry}

\setlength{\hintscolumnwidth}{0.15\textwidth}
\firstname{First}     % Your name
\lastname{Last}       % Your last name
\phone{xxx-xxx-xxxx}            % Your phone number
\email{[email protected]}             % Your email address
\extrainfo{Address}   % Possible extra information e.g. website

\begin{document}
\makecvtitle
\setlength{\footskip}{52pt} % to avoid warning

\section{\textbf{Experience}}
\cvitem{2018-Present}{\emph{Researcher}, Cool University}
\cvlistitem{\textbf{Doing this, that, and the other}}

\end{document}

タイトルだけの余白をフォーマットする方法を知っている人はいますか? よろしくお願いします!

関連情報