I am using subfig to put several images together. However, I am getting an enormous amount of whitespace above the image. It seems to be getting moved to the bottom of the page, which is fine, but the space above it is not being filled.
Here is a minimal example:
Code: Select all
\documentclass[a4paper,12pt]{article} %
\usepackage{graphicx} %
\usepackage{subfig} %
\begin{document}
\begin{figure}
\centering
\subfloat[]{\includegraphics[width=0.5\textwidth]{images/image1.png}}
\subfloat[]{\includegraphics[width=0.5\textwidth]{images/image2.png}} \\
\noindent
\subfloat[]{\includegraphics[width=0.5\textwidth]{images/image3.png}}
\subfloat[]{\includegraphics[width=0.5\textwidth]{images/image4.png}}
\caption{bla bla}
\label{image}
\end{figure}
\end{document}