我在一本书中看到了这种格式,想知道如何在章节标题上方创建不同粗细的水平线。我假设这里不需要 MWE。我有一些想法这里但我认为可能有比 TikZ 更简单的东西。
答案1
这看起来不像是变化宽度的规则,只是两个规则:
\documentclass{article}
\begin{document}
\noindent\rule{\textwidth}{.5pt}
\nointerlineskip
\noindent\rule{3cm}{5pt}
\end{document}
例如使用评论中提到的部分格式:
\documentclass{article}
\usepackage{titlesec}
\titleformat{\section}
{\normalfont\Large\bfseries}{\thesection}{1em}{}[{\titlerule}]
\renewcommand\titlerule{%
\parbox{\textwidth}{%
\noindent\rule{\textwidth}{.5pt}%
\par
\nointerlineskip
\noindent\rule{3cm}{5pt}\par}}
\begin{document}
\section{Test Section}
\end{document}