如何更改“表格列表”和“图表列表”中的标题级别?
我正在使用 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