如何创建类似 listoffigures 的标题?

如何创建类似 listoffigures 的标题?

有许多命令可以创建特殊类型的标题,例如、、\listoftables等等。我正在使用文档类,并想创建这样的标题。\listoffigures\printbibliography\printglossaryreport

我试过:

  1. \chapter{}但它包括Chapter n
  2. \chapter*{}但间距不同

我怎样才能正确地模仿这些命令的标题?

我也用它来改变标题的大小:

\usepackage{titlesec}
\titleformat{\chapter}[display]
   {\bfseries\Huge}
   {\filright\Large\chaptertitlename\ \thechapter}
   {0mm}{\filright}
\titlespacing*{\chapter}
   {0pt}{-10pt}{15pt}

答案1

定义report \listoffigures

\newcommand\listoffigures{%
    \if@twocolumn
      \@restonecoltrue\onecolumn
    \else
      \@restonecolfalse
    \fi
    \chapter*{\listfigurename}%
      \@mkboth{\MakeUppercase\listfigurename}%
              {\MakeUppercase\listfigurename}%
    \@starttoc{lof}%
    \if@restonecol\twocolumn\fi
    }

因此,您可以将其复制到\listoffoojut\listfigurename 中并用文件扩展名List of whatever 替换。lof

相关内容