我正在尝试将其打印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}