我正在使用文档类memoir
,并希望将“内容”标题设置\tableofcontents
为节样式而不是章样式。可以吗?
确切地说,我想对\listoffigures
、\listoftables
和\listoftheorems
(从thmtools
包中)执行相同的操作。但我想 的答案\tableofcontents
可以简单地调整为这些。
这是一个 MWE,它生成带有章节样式标题的目录。
\documentclass{memoir}
\begin{document}
\tableofcontents
\chapter{My}
\section{Awesome}
\section{Table}
\chapter{Of}
\section{Contents}
\section{Is}
\section{Here}
\end{document}
编辑:我希望标题的样式\tableofcontents
为\listoffigures
章节样式。但目录中的显示(即“内容”或“图表列表”)通常应为章节(不带编号)。我希望这能澄清任何混淆。
答案1
如果只是出现了 的标题\tableofcontents
,那么可以重新定义\@tocmaketitle
:
\makeatletter
\renewcommand\@tocmaketitle{%
\section*{\contentsname}
\tocmark%
\@afterheading}
\makeatother
类似于\listoffigures
(lof) 等。记住在内部\listoftheorems
使用\listoffigures
。