如何在实际图表列表之前添加文本?

如何在实际图表列表之前添加文本?

目前我有:

\addcontentsline{toc}{chapter}{Abbildungsverzeichnis}

\listoffigures

\noindent
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
    
\newpage

正如预期,结果如下:

在此处输入图片描述

如何将文本移到实际列表之前,但在标题之后\listoffigures,而不是将其放在自己的页面上,并将图表列表添加到下一页?

答案1

您可以使用\addtocontents。这也允许更精确地放置目录条目。

\documentclass{book}
\usepackage{hyperref}

\begin{document}

\tableofcontents

\listoffigures

\addtocontents{lof}{%
  \protect\addcontentsline{toc}{chapter}{\listfigurename}%
  \noindent This is some text I want to have between the
  title and the actual entries\par\bigskip
}

\chapter{Test}

\begin{figure}
\caption{This is for the first entry}
\end{figure}

\end{document}

在此处输入图片描述

相关内容