有许多命令可以创建特殊类型的标题,例如、、\listoftables
等等。我正在使用文档类,并想创建这样的标题。\listoffigures
\printbibliography
\printglossary
report
我试过:
\chapter{}
但它包括Chapter n
\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
}
因此,您可以将其复制到\listoffoo
jut\listfigurename
中并用文件扩展名List of whatever
替换。lof