How do I stop my figures from being pushed into an "open" spot, and having text fill the "empty" spot? The paper does not have a very clear flow because while one paragraph is talking about Figure 1, Figure 1 is actually AFTER the paragraph that is talking about Figure 2. I have tried changing the \begin{figure}[!ht] but it has not solved my problem.
I'm basically looking for a way just to put empty spaces and order the document how my Source is typed.
\begin{figure}[!ht]
\centering
\begin{minipage}[b]{.45\textwidth}
\includegraphics[width=1\linewidth]{Flee.jpeg}
\caption{Whether the victim was fleeing}
\label{fig:complete}
\end{minipage}
\hspace{.5cm}
\begin{minipage}[b]{.45\textwidth}
\includegraphics[width=1\linewidth]{Threat.jpeg}
\caption{Whether the victim was a threat }
\label{instruct}
\end{minipage}
\end{figure}
Here are my packages
\usepackage{amsmath, amssymb}
\usepackage{epstopdf}% To incorporate .eps illustrations using PDFLaTeX, etc.
\usepackage{subfigure}% Support for small, `sub' figures and tables
\usepackage[numbers,sort&compress,merge]{natbib}% Citation support using natbib.sty
\usepackage{multirow}
\usepackage[singlelinecheck=false]{caption}
\usepackage[labelsep=:]{caption}
\usepackage{pgfplots}
\usepackage{indentfirst}
\usepackage{dirtytalk}
\usepackage[dvipsnames]{xcolor}
\usepackage{geometry}
\geometry{margin=1in}
floatrowpackage. – Bernard Dec 11 '19 at 20:14\flushbottomactive? What document class are you using? – Werner Dec 11 '19 at 20:15\captionof{figure}{...}? – Bernard Dec 11 '19 at 20:29\begin{figure}[!ht]. Basically, what this means is if the entirefiguredoes not fit right where the directive is encountered (the "h" part), the only other placement option you're giving it is "t", for top of the next page. What, then, do you want to happen if thefiguredoesn't fit where the\begin{figure}is encountered? I can think of only two remaining options: Create a (potentially massively) overfull page, or create a big blob of whitespace toward the bottom of the page. Neither option seems attractive, does it?] – Mico Dec 11 '19 at 21:43\documentclassand something that replicates the problem. We don't haveFlee.jpgandThreat.jpg. Ideally we want an MWE. See I've just been asked to write a minimal example, what is that? – Werner Dec 11 '19 at 21:43figureenvironment is to take the content out of the document flow and mark it as a float that can be inserted elsewhere to help with page breaking, you have restricted the places it can be re-inserted so make it more likely to float to the end. An image that is part of the text can be directly inserted with\includegraphics– David Carlisle Dec 12 '19 at 00:26