更改“表格列表”和“图表列表”中的标题级别

更改“表格列表”和“图表列表”中的标题级别

如何更改“表格列表”和“图表列表”中的标题级别?

我正在使用 usepackage tocbibind 将它们放入目录中,并使用 \renewcommand{} 重命名它们。

答案1

据我理解,你的问题只需要

\usepackage[section]{tocbibind}

在你的序言中。

答案2

更改\tableofcontents\listtablename您想要更改的任何内容,然后更改\section为您想要的标题级别。

示例 1

\makeatletter
\renewcommand\listoftables{%
\subsection{\listtablename{}}%
\@mkboth{\MakeUppercase\listtablename}%
     {\MakeUppercase\listtablename}%
\@starttoc{toc}%
}
\makeatother

示例 2

\makeatletter
\renewcommand\listoffigures{%
\subsection{\listfigurename{}}%
\@mkboth{\MakeUppercase\listfigurename}%
     {\MakeUppercase\listfigurename}%
\@starttoc{toc}%
}
\makeatother

在这里找到了答案。

相关内容