有没有办法缩进标题规则,就像我缩进章节的标题文本一样?
\titleformat{\section}{\Large\scshape\raggedright}{}{4.5em}{}[\titlerule]
抱歉,这个问题太简单了,我刚开始使用 latex。谢谢!
编辑:我尝试过:
[hspace{4.5em}\hrulefill]
但这似乎影响了垂直间距
编辑2:最小示例
\documentclass{article}
\usepackage{titlesec}
\titleformat{\section}{\Large\scshape\raggedright}{}{4.5em}{}[\titlerule]
\titlespacing{\section}{0pt}{3pt}{3pt}
\begin{document}
\section{Heading 1}
information about heading 1
\section{heading 2}
information about heading 2
\end{document}}