サブセクションの見出しの左インデント

サブセクションの見出しの左インデント

私は履歴書を準備するために LaTex の moderncv パッケージを使用しています。サブセクションのタイトルの左インデントに苦労しています。\subsection ヘッダーを左に移動するにはどうすればよいでしょうか?

画像でわかるように、[第1項]垂直線に沿って並んでおり、[セクション]開始します。どうすれば[第1項](青い字幕)を左に移動して下の行と揃えます[サブセクション1.1:]どれが弾丸で始まりますか?

ここに画像の説明を入力してください

答え1

コマンドを再定義する必要があります\subsection

\documentclass[sans]{moderncv}
\moderncvstyle{casual}
\moderncvcolor{blue}

\name{John}{Doe}
\title{Title}

\makeatletter
\RenewDocumentCommand{\subsection}{sm}{%
  \par\addvspace{1ex}%
  \phantomsection{}% reset the anchor for hyperrefs
  \addcontentsline{toc}{subsection}{#2}%
  \strut\subsectionstyle{#2}%
  \par\nobreak\addvspace{.5ex}\@afterheading}% to avoid a pagebreak after the heading
\makeatother

\begin{document}
\maketitle
\section{Section}
\subsection{Subsection 1}
\end{document}

関連情報