使用 titlesec 自定义两部分章节标题

使用 titlesec 自定义两部分章节标题

我对章节标题的格式有疑问titlesec

根据找到的代码,我希望我的章节标题能够大体上遵循display与本例类似的选项这里

\documentclass[12pt]{report}

\usepackage{titlesec}
\titleformat
{\chapter}
[display]
{\bfseries\large\itshape}
{\center{\thechapter}}
{0.5ex}
{
\rule{\textwidth}{1pt}
\vspace{1ex}
\centering
}
[
\vspace{-0.5ex}
\rule{\textwidth}{0.3pt}
]

\begin{document}
    \chapter{Sample Chapter}
\end{document}

这会产生类似这样的结果:

在此处输入图片描述 但是,除了“1”,我还想插入可自定义的文本,例如“简介”。我该如何做这样的事情,最好还是借助titlesec

干杯!

相关内容