我正在用 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}