Is there a way to shift it up by a couple of millimetres within that page in order to prevent it from covering the page number at the bottom? I tried a negative "vspace", but that one affects only the text around the table, not the table itself.
Here's an MWE of such a table (actually, this one covers the page number by quite a bit. In my case, it's much less).
Thanks in advance!
Code: Select all
\documentclass[letterpaper,12pt]{article}
\usepackage{lipsum}
\begin{document}
\newcommand{\loremipsum}{Lorem ipsum dolor sit amet, consectetuer adipiscing elit.}
\lipsum[1-4]
\begin{table}
\caption{Some lorem ipsum}
\begin{tabular}{p{45mm}p{45mm}p{45mm}}
\hline
1 & 2 & 3 \\ \hline\hline
\loremipsum & \loremipsum & \loremipsum \\ \hline
\loremipsum & \loremipsum & \loremipsum \\ \hline
\loremipsum & \loremipsum & \loremipsum \\ \hline
\loremipsum & \loremipsum & \loremipsum \\ \hline
\loremipsum & \loremipsum & \loremipsum \\ \hline
\loremipsum & \loremipsum & \loremipsum \\ \hline
\loremipsum & \loremipsum & \loremipsum \\ \hline
\loremipsum & \loremipsum & \loremipsum \\ \hline
\loremipsum & \loremipsum & \loremipsum \\ \hline
\loremipsum & \loremipsum & \loremipsum \\ \hline
\loremipsum & \loremipsum & \loremipsum \\ \hline
\loremipsum & \loremipsum & \loremipsum \\ \hline
\loremipsum & \loremipsum & \loremipsum \\ \hline
\end{tabular}
\end{table}
\lipsum[1-4]
\end{document}