![サブセクションのタイトルが [左余白] の下のセクションのタイトルと一致していません](https://rvso.com/image/391230/%E3%82%B5%E3%83%96%E3%82%BB%E3%82%AF%E3%82%B7%E3%83%A7%E3%83%B3%E3%81%AE%E3%82%BF%E3%82%A4%E3%83%88%E3%83%AB%E3%81%8C%20%5B%E5%B7%A6%E4%BD%99%E7%99%BD%5D%20%E3%81%AE%E4%B8%8B%E3%81%AE%E3%82%BB%E3%82%AF%E3%82%B7%E3%83%A7%E3%83%B3%E3%81%AE%E3%82%BF%E3%82%A4%E3%83%88%E3%83%AB%E3%81%A8%E4%B8%80%E8%87%B4%E3%81%97%E3%81%A6%E3%81%84%E3%81%BE%E3%81%9B%E3%82%93.png)
left margin
パッケージを使用してセクション タイトルを配置するtitlesec
と、テキストの最初の行がタイトルと期待どおりに揃います。しかし、サブセクション タイトルは揃いません。titlespacing を試しましたが、失敗しました。コードの何が問題なのでしょうか? サブセクション タイトルをセクション タイトルと自動的に揃えるにはどうすればよいですか?
MWE:
\documentclass{article}
\usepackage{titlesec}
\begin{document}
\titleformat{\section}[leftmargin]{\normalfont\Large\bfseries\filleft}{\Roman{section}.}{1em}{}
\titlespacing{\section}{4em}{3.5ex plus 1ex minus .2ex}{1em}
\titlespacing{\subsection}{0pt}{0pt}{1.5ex plus .2ex}
\section{First Section}This text aligns with its section header as expected.\par\vspace{3em}
\section{Second Section}
\subsection{How to top align this subsection title with its section title}
\end{document}