I found this thread:
Force figure placement in text
where it tells me that I have to use \usepackage{float} and then using \begin{figure}[H] instead.
However I have the problem that in this example
\documentclass[12pt,a4paper,twoside]{report}
\usepackage{float}
\usepackage{graphicx}
\begin{document}
\newpage
\section{blablabla}
\begin{figure}[H]
\centering
\includegraphics[width=\epswidtha\textwidth, angle=90]{fig1.eps}
\caption{BKLABLABLABLALBABLA ABLSfd BLABLA}
\label{A2.1}
\end{figure}
\begin{figure}[H]
\centering
\includegraphics[width=\epswidtha\textwidth, angle=90]{fig2.eps}
\caption{BKLABLABLABLALBABLA ABLSfd BLABLA}
\label{A2.2}
\end{figure}
\end{document}
latex places fig1 at the bottom of the page and there is a big blank after the section writing...fig2 is then placed on the next page which I do not want! I (no matter what issues latex has, I dont care!) want that figure there... I did not post an entire mwe, because with specific pictures not being present it didn't seem to make sense.
\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – dexteritas Aug 17 '17 at 11:17example-image-aorexample-image-bor, for a real thrill,example-image-c, which everyone has. Or specify the dimensions and passdemotographicx. Presumably, your second figure is too large to fit on the page. Make the page bigger, delete something or move the figures. The white space is because you've insisted on very poor placement and LaTeX has to do something to finish the page. – cfr Aug 17 '17 at 11:18example-imabe-a,example-imabe-betc. See https://tex.stackexchange.com/a/231741/105447. – gusbrs Aug 17 '17 at 11:18figureenvironment to force them to be on the same page (page breaks cannot occur inside afigureenv), but you might need to reduce the size of the images. That the first figure ends up on the bottom of the page and not immediately below the\section, is possibly because you're using a class with\flushbottom, similar to https://tex.stackexchange.com/q/56091/ – Torbjørn T. Aug 17 '17 at 11:34figureand[H], but using the packagecaptionwith its\captionof{figure}{blabla}macro. Just put all the contents in acenterorminipageenvironment (the latter avoids page breaks). The idea: If you don't want it to float, do not use a float. – Philipp Imhof Aug 17 '17 at 11:50centerenvironment with\captionof{figure}{bla}and a truefigure. The integration is seemless, you can freely mix both, e.g. use figures for things that should float and the other method for things that should remain fixed. (There might however be a problem if a floating figure is defined before a fixed one, but placed later due to space constraints. I do not know, because I have never had that problem.) – Philipp Imhof Aug 17 '17 at 12:32