[Tex/LaTex] How to prevent figures from appearing at the top of a page

floatsgraphicsincludeincludegraphicssubfig

Why is it that, when I insert my figure with \begin{figure}, it is placed at the beginning of the paper ?
enter image description here

Best Answer

You need to specify [H] like the code below

\begin{figure}[H]
    \centering
    \includegraphics[width=0.95\textwidth]{image.png}
    \caption{Caption.}
    \label{fig:image1}
\end{figure}

Add \usepackage{float}

Related Question