I am trying to add two figures in the same pages and Latex automatically puts one at the top and other at the bottom:
I would like to reduce the space between both, so the blank space will be at the end of the page and not in the middle. Any solution?
\begin{figure}[H]
\centering
\includegraphics [width=1.0\textwidth]{ff4}
\caption{Derivatives in equation \ref{eq9}.}
\label{F4}
\end{figure}
\begin{figure}[H]
\centering
\includegraphics [width=1.0\textwidth]{ff5}
\caption{Derivatives in equation \ref{eq4}.}
\label{F5}
\end{figure}
EDIT:
As I was asked I reproduced a minimal example, the problem happens when I have other Figure after these first two:
\documentclass[11pt,twoside]{mitthesis}
\pagestyle{plain}
\usepackage{graphicx}
\usepackage{float}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath,nccmath}
\usepackage{amssymb}
\usepackage{array,booktabs}
\usepackage{enumerate}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{color} %red, green, blue, yellow, cyan, magenta, black, white
\definecolor{mygreen}{RGB}{28,172,0} % color values Red, Green, Blue
\definecolor{mylilas}{RGB}{170,55,241}
\usepackage[polutonikogreek,english]{babel}
\usepackage{textgreek}
\usepackage{fancyhdr}
\pagestyle{fancy}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[CE,CO]{\leftmark}
\fancyfoot[LE,RO]{\thepage}
\usepackage{emptypage}
\setcounter{MaxMatrixCols}{20}
\begin{document}
\begin{figure}[H]
\centering
\includegraphics [width=1.0\textwidth]{ff4}
\caption{Derivatives in equation \ref{eq9}.}
\label{F4}
\end{figure}
\begin{figure}[H]
\centering
\includegraphics [width=1.0\textwidth]{ff5}
\caption{Derivatives in equation \ref{eq4}.}
\label{F5}
\end{figure}
\begin{figure}[H]
\centering
\includegraphics [width=1.0\textwidth]{ff5}
\caption{Derivatives in equation \ref{eq4}.}
\label{F5}
\end{figure}
text text text text text text text text text text text text text text text
text text text text text
text text text text text text text text text text
t ext text text text text text text text text texttext text text text text
text text text text texttext text text text text text text text text
texttext text text text text text text text text text
text text text text text text text text text texttext text text text text
text text text text texttext text text text text text text text text
texttext text text text text text text text text text
text text text text text text text text text texttext text text text text
text text text text text
t ext text text text text text text text text texttext text text text text
text text text text texttext text text text text text text text text text
\end{document}





\documentclassand ending with\end{document}that includes all the packages that are needed to reproduce the problem? – Tiuri Jun 03 '17 at 09:01[H]so bad white space is inevitable, presumably you have\flushbottomin effect and so the only way to achieve that is to expand the space in the middle. just put\clearpageafter the second figure. – David Carlisle Jun 03 '17 at 09:31