更改“表格列表”和“數字列表”中的標題級別

更改“表格列表”和“數字列表”中的標題級別

如何更改「表格清單」和「圖表清單」中的標題層級?

我使用 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

在這裡找到了答案。

相關內容