Я хочу показать текст после изображения. Поэтому, следуя документации, я сделал 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
В отличие от 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}