是否有一种方法可以编辑以下代码,从而使图像被迫显示在文本中的位置,例如,使用像命令一样的[H]?或如何合并[H]命令?
我尝试过[Htb]
\begin{figure*}[tb]
\centering
\makebox[\textwidth]{\includegraphics[width=.9\paperwidth]{./fig/fig5.eps}}
\caption{The SAP data model based on an UML class diagram: classes and relationships.}
\label{fig:Fig5}
\end{figure*}
非常感谢
答案 0 :(得分:0)
要使用@Test
选项,you need to include the float
package:
H
答案 1 :(得分:0)
您可以尝试更改
\begin{figure*}[tb]
到
\begin{figure*}[!h]
或
\begin{figure*}[!ht]
但是,如果图像很大或整页,则可能会发生其他一些黑客攻击。
答案 2 :(得分:0)
如果您希望某些东西不浮动,请不要使用 figure
之类的浮动环境:
\documentclass{article}
\usepackage{graphicx}
\usepackage{caption}
\begin{document}
text before
{\noindent\includegraphics[width=\linewidth]{example-image-duck}
\captionof{figure}{The SAP data model based on an UML class diagram: classes and relationships.\label{fig:Fig5}}}
text after
\end{document}