答案1
答案2
您只需使用[display]
样式可选参数\titleformat
。
另一方面,您不需要使用tkiz
这样一个简单的规则:\titlerule
命令是由titlesec
这样的事情提供的。
因为我不知道您是否想要章节编号和章节标题之间的规则,或者与标题编号在同一行,所以我提供了两者。
\documentclass{article}
\usepackage[svgnames]{xcolor}%
\usepackage{titlesec}%
\usepackage{lipsum}% just to generate text for the example
\titleformat{\section}[display]
{\normalfont\Large\bfseries}
{\thesection}
{0pt}
{{\color{Silver! 80}\titlerule[0.25cm]}\vspace{0.5ex}}
\begin{document}
\section{Objectifs}
\lipsum[1]
\end{document}