我即将完成我的博士论文,在尝试将我的照片嵌入传记部分时,我遇到了最后一个问题(我希望如此)。我知道 wrapfigure 不能在任何类型的列表环境中使用,但是似乎我在模板中使用的 \appendix 会改变此环境。主文档如下所示:
\documentclass{dissertation}
\usepackage{xspace}
\begin{document}
\title[Title]{Subtitle} \author{Please}{Help}
\frontmatter
\include{title/title}
\include{summary/summary}
\tableofcontents
\listoffigures
\listoftables
%% Use Arabic numerals for the page numbers of the chapters.
\mainmatter
%% Turn on thumb indices.
\thumbtrue
\include{chapter-1/chapter-1}
\include{chapter-2/chapter-2}
\include{chapter-5/chapter-5}
\include{chapter-3/chapter-3}
\include{chapter-4/chapter-4}
\include{chapter-6/chapter-6}
\include{conclusion/conclusion}
%% Use letters for the chapter numbers of the appendices.
\appendix
\include{appendix/appendix-a}
\include{appendix/appendix-b}
\references{refchapt2}
%% Turn off thumb indices for unnumbered chapters.
\thumbfalse
\include{acks/acks}
\include{cv/cv}
\include{publications/publications}
\end{document}
在章节部分 \appendix 之前使用 wrapfigure 没有问题,但是在之后会出现错误:
在冲突环境中使用 Wrapfigure
和
固定包裹图被迫浮动
并且只包含文本下方的图片。有什么办法可以解决这个问题吗?