I have a table and I was not able to remove additional space that exists after the table's caption.
\begin{table}[ht]
\raggedright
\begin{tabular}{l|l}
...
\hline
\end{tabular}
\caption{Notations used in the calculation of the cost function.}\label{cost:calc}
\end{table}
Example view:
How could I prevent additional space generated after a table?

\begin{table}[ht]into\begin{table}[H]fixed the problem. @leandriis – alper Apr 22 '19 at 11:28