하위 섹션 제목이 [왼쪽 여백] 아래의 섹션 제목과 정렬되지 않습니다.

하위 섹션 제목이 [왼쪽 여백] 아래의 섹션 제목과 정렬되지 않습니다.

left margin패키지를 사용하여 섹션 제목을 넣었는데 titlesec텍스트의 첫 번째 줄이 예상대로 제목과 정렬됩니다. 그러나 하위 섹션 제목이 일치하지 않습니다. 제목 간격으로 시도했지만 실패했습니다. 내 코드에 무슨 문제가 있나요? 하위 섹션 제목을 섹션 제목과 자동으로 정렬하는 방법은 무엇입니까?

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}

여기에 이미지 설명을 입력하세요

관련 정보