在目录和图片列表的上方和下方插入两条水平线

在目录和图片列表的上方和下方插入两条水平线

enter image description here

我想知道如何在目录和图片列表的上方和下方插入水平线。我成功地为章节标题插入了水平线,但没有为目录和图片列表插入水平线。对于章节,我使用了以下代码:

\usepackage{titles}

\titleformat{\chapter}[display]
  {\bfseries\huge}
  {\filleft\Large\chaptertitlename~\thechapter}

  {3ex}
  {\titlerule\vspace{1.5ex}\filright}

  [\vspace{1ex}\titlerule]

答案1

将此代码添加到您的序言中:

\usepackage{titlesec}

\titleformat{name=\chapter,numberless}
  {\bfseries\huge}
  {}
  {0ex}
  {\titlerule\vspace{1.5ex}\filright}
  [\vspace{1ex}\titlerule]

所有未编号的章节标题(包括目录、图表列表等)将左对齐并标有横线。

相关内容