网上有没有关于如何向目录添加图像/样式的示例 - 具体来说,我想在目录页面的每个章节部分上方添加一张图片
目录
(此处有图片)
第 1 章....p22
部分等
(此处有图片)
第 2 章 .....p33
部分等
...
网上有任何关于如何轻松做到这一点的提示或示例吗?
谢谢
吉姆
答案1
\documentclass{report}
\usepackage{graphicx}
\newcommand{\tocfig}[2][]{%
\addtocontents{toc}{%
\ifnum\value{chapter}>0 \bigskip\noindent\fi%
\protect\includegraphics[#1]{#2}\par}%
}
\begin{document}
\tableofcontents
\tocfig[height=15mm]{example-image}
\chapter{title}
\section{title}
\tocfig[height=15mm]{example-image}
\chapter{title}
\section{title}
\end{document}