![하위 섹션 제목이 [왼쪽 여백] 아래의 섹션 제목과 정렬되지 않습니다.](https://rvso.com/image/391230/%ED%95%98%EC%9C%84%20%EC%84%B9%EC%85%98%20%EC%A0%9C%EB%AA%A9%EC%9D%B4%20%5B%EC%99%BC%EC%AA%BD%20%EC%97%AC%EB%B0%B1%5D%20%EC%95%84%EB%9E%98%EC%9D%98%20%EC%84%B9%EC%85%98%20%EC%A0%9C%EB%AA%A9%EA%B3%BC%20%EC%A0%95%EB%A0%AC%EB%90%98%EC%A7%80%20%EC%95%8A%EC%8A%B5%EB%8B%88%EB%8B%A4..png)
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}