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}

관련 정보