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}