我有一个小问题。我正在写我的博士论文(这不是问题),我希望我的图像出现在我想要的位置。我设法使用
\begin{figure}[H]
\end{figure}
但图片经常出现在下一页。我真的不介意,但文本会散布到整个页面上。我可以通过添加来本地修复该问题,\clearpage
但我这样做时感觉像是在使用 Microsoft Word,当然,当我添加一些文本时,我必须更改 clearpage 命令的位置。
你知道该如何帮助我吗?
谢谢!
答案1
您可以摆脱浮动环境并使用该caption
包:
\usepackage{caption}
进而
some text some text some text some text
\noindent\begin{minipage}{\textwidth}
\captionsetup{type=figure}
\centering
\includegraphics{your-figure-here}
\caption{caption goes here}
\end{minipage}
other text other text other text other text
无论如何,我赞同 David Carlisle 的评论,并强烈建议使用浮动并让 LaTeX 进行页面组合(可能仅使用[tb]
放置选项)。