在写论文时,我尝试将相对较大的图形包含到文档中。由于它们太大,我不希望将它们放在句子中。
The first part of the Text.
\begin{figure}[ht]
\includegraphics[width=\textwidth]{graphics/pipeline}
\caption{Jenkins Build-Pipeline}
\label{fig:pipeline}
\end{figure}
The rest of the text.
除了使用之外,还有其他方法可以实现这一点吗\begin{figure}[H]
?
答案1
如果您想在图表之前结束段落并在图表之后继续,只需用白线围住图表即可:这样将结束段落并在图表之后开始新的段落。(实际上您只需要一条白线,但这样会更好看)。
\documentclass{article}
\usepackage{graphicx}
\begin{document}
The first part of the Text.
\begin{figure}[ht]
\includegraphics[width=\textwidth, height=1cm]{example-image-a}
\caption{Jenkins Build-Pipeline}
\label{fig:pipeline}
\end{figure}
The rest of the text.
\end{document}
顺便说一句,请注意这是一个正确的 MWE --- 无需任何外部资产即可进行编译。