对于图形,可以添加如下位置指定符:
\begin{figure}[H]
\includegraphics{/path/to/figure}
\caption{}
\label{}
\end{figure}
[H]
将图形相对于文本放置在“此处”的位置说明符在哪里。我如何确定整个文档的位置,是否有任何使用包等?
答案1
因此,正如 David 所建议的,可以使用以下命令来完成此操作:
\makeatletter
% Make all figure use 'ht' position by default:
\renewcommand\fps@figure{ht}
\makeatother
正如他所说,通常不建议使用H
,而是使用ht
。