在新章节前的附加页中插入图片

在新章节前的附加页中插入图片

如何在 LaTeX 文件中章节开始前的附加页上插入图片?该图片应算作新章节的一部分(即在目录中)。

我试过:

\chapter{first chapter}

\includegraphics{myFigure}
\chapter{second chapter}

问题是“myFigure”被视为第一章的一部分,并且章节标题出现在页面上。我该如何避免这种情况?

答案1

我解决问题的方法如下:

\chapter{first chapter}   
\chapter*{} 
\newpage
\thispagestyle{empty} 
\begin{figure}[H]
\includegraphics[scale=1]{myFigure}
\end{figure}
\chapter{second chapter}

相关内容