MWE では画像の後にテキストが表示されますが、実際のドキュメントでは表示されません

MWE では画像の後にテキストが表示されますが、実際のドキュメントでは表示されません

画像の後にテキストを表示したいです。そこで、ドキュメントに従って、見事に機能する MWE を作成しました。

 \documentclass[notitlepage]{report}
\usepackage{graphicx}
\begin{document}


At t = 90.5, $\delta_{1} = 0.131$, $\delta_{2}=0.872$, and $x[0] = 0.139$ we notice interesting behavior for the values of $x{t}$.
\begin{figure}[ht!]
  \includegraphics[width=\linewidth, scale=0.5]{interesting.png}
  \caption{A change in sign of $\frac{dx}{dt}$}
  \label{fig: Modeled System}
\end{figure}

$\frac{dx}{dt}$ appears to undergo a sign change resulting in $x[t]$ losing value before regaining value to the point that at some point $t$, $x[t] > x[0]$
\end{document}

その後、実際の論文で試してみたところ、次のようになりました。1]ここに画像の説明を入力してください

答え1

MWE とは異なり、実際のドキュメントではページに十分なスペースがありません。画像の後にテキストを配置する必要がある場合は、テキストが浮かび上がってしまわないようにバリアを配置します。

 \documentclass[notitlepage]{report}
\usepackage{graphicx}

\usepackage{placeins}

\begin{document}


At t = 90.5, $\delta_{1} = 0.131$, $\delta_{2}=0.872$, and $x[0] = 0.139$ we notice interesting behavior for the values of $x{t}$.
\begin{figure}[ht!]
  \includegraphics[width=\linewidth, scale=0.5]{interesting.png}
  \caption{A change in sign of $\frac{dx}{dt}$}
  \label{fig: Modeled System}
\end{figure}

\FloatBarrier

$\frac{dx}{dt}$ appears to undergo a sign change resulting in $x[t]$ losing value before regaining value to the point that at some point $t$, $x[t] > x[0]$
\end{document}

関連情報