在目录中打印图表列表时出现问题

在目录中打印图表列表时出现问题

我正在尝试将其打印List of Figures在目录中。

为此我正在使用这个:

\renewcommand{\listfigurename}{My Custom Name} 
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures

但当我编译时,我看到两条记录,第一条My Custom Name和第二条List of Figures的页数相同。我希望只显示My custom Name

提前致谢,问候

答案1

这只是一个猜测,但我认为类似的内容tocbibind已被加载,并\listoffigures自动添加到目录中。

无论如何,\addcontentsline这样的设置是错误的,因为它使List of Figures(或自定义标题)的出现次数加倍

\documentclass{book}%

\usepackage{tocbibind}%


\usepackage{blindtext}%

\begin{document}
\tableofcontents 
\renewcommand{\listfigurename}{My Custom Name}%
%\addcontentsline{toc}{chapter}{\listfigurename}% 
\listoffigures


\Blinddocument

\end{document}

在此处输入图片描述

相关内容