I have a Latex section that has text and a bunch of added images. Some text followed by an image is leaving a huge blank space between the text and the image. This happens everytime an image appears for this section.
\usepackage{float} is already added. And I have already tried changing [H] for [h] or [h!] in the following code:
\begin{figure}[h!]
\begin{center}
\includegraphics[scale=0.5]{van_gogh.jpg}
\label{fig:VanGogh}
\caption{Imagen}
\end{center}
\end{figure}
What can I now do to try to fix this?
This is how it looks: 
THANKS

[htbp]as the float specification (for example), not[H]or only[h](which the compiler will complain about anyway). Possible duplicate: How to influence the position of float environments like figure and table in LaTeX? – Werner Mar 15 '21 at 05:52example-imageas the test image as it is generally available. But make a complete document that shows your problem. But it is not clear that you have a problem. The only purpose of\begin{figure}is to allow the figure to move, so it sounds like it is working as expected. – David Carlisle Mar 15 '21 at 08:52\fbox{\includegraphics{...}}will show you whether you need to clip the image. – John Kormylo Mar 15 '21 at 14:50