I've a problem, I need to insert some image after a table in the same page, I try to set the table [t], [ht] but the image go always on top. I don't understand where is the problem.
\begin{document}
Blablabla
\begin{table}[ht]
\resizebox{1\textwidth}{!}
{
\begin{minipage}{\textwidth}
\caption{Configuration}
\centering
\begin{tabular}{|c|c|c|l|l|l|l|}
\multicolumn{2}{c}{}\\ \hline
& $Run_{1}$ & $Run_{2}$ & $Run_{3}$ &$Run_{4}$ \\ \hline
Anomalie & 5811 & 4266 & 4723 & 5477 \\ \hline
Accuracy & 96\% & 72\% & 78\% & 91\% \\ \hline
\end{tabular}
\end{minipage}
}
\end{table}\vspace{3.5cm}
\begin{figure}
\begin{minipage}[hb]{7.0cm}
\centering
\includegraphics[width=6.8cm]{./run1.png}
\caption{Run 1}
\end{minipage}
\ \hspace{1mm} \hspace{2mm} \
\begin{minipage}[hb]{7.0cm}
\centering
\includegraphics[width=6.8cm]{./run2.png}
\caption{Run 2}
\end{minipage}
\ \hspace{1mm} \hspace{2mm} \
\begin{minipage}[hb]{7.0cm}
\centering
\includegraphics[width=6.8cm]{./run3.png}
\caption{Run 3}
\end{minipage}
\ \hspace{1mm} \hspace{2mm} \
\begin{minipage}[hb]{7.0cm}
\centering
\includegraphics[width=6.8cm]{.run4.png}
\caption{Run 4}
\end{minipage}
\end{figure}
\end{document}

\documentclassand ending with\end{document}. – Bobyandbob Aug 28 '17 at 10:30% \resizebox{1\textwidth}{!}{\begin{minipage}{\textwidth}? – samcarter_is_at_topanswers.xyz Aug 28 '17 at 10:46\usepackage{float}forHto work, did you add that? Further, the way you're trying to do that resizing doesn't actually make much sense. The width of theminipageis\textwidth, and you're resizing it to\textwidth, so you're not really doing anything. – Torbjørn T. Sep 07 '17 at 21:04