LaTeX:在图表下方插入文本

LaTeX:在图表下方插入文本

我正在用 LaTeX 写博士论文。我想在标题“图表”和图表列表之间插入几行文本,如下所示:
图表
#我想在这里添加文本#
图 1......2
图 2......3
图 3......5 \

我正在使用以下命令插入图表目录:

\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures

提前感谢你的帮助,马丁

答案1

这是一个使用标准book类和tocloft包的解决方案(参见包文档的第 7 页)。

\documentclass{book}
\usepackage{lipsum}
\usepackage{tocloft}
  \renewcommand{\cftafterloftitle}{\\[\baselineskip] \lipsum[11]}

\begin{document}

\tableofcontents

\listoffigures

\chapter{Chapter one}
\chapter{Chapter two}

\begin{figure}
The figure here
  \caption{A caption here}
\end{figure}

\end{document}

在此处输入图片描述

相关内容