[Tex/LaTex] How to move a paragraph to the bottom of the page (without vspace)

spacingvertical alignment

I am looking to move a text paragraph of a few lines (like a disclaimer) at the bottom of a 2 page document. Each time I do that, I need to adjust that specific paragraph with the \vspace function.

Is there a function to put a paragraph directly at the bottom?

Best Answer

If you want a more 'automated' approach, you could build an environment- it still uses \vspace{\fill} though.

\documentclass{article}

\usepackage{lipsum}
\newenvironment{bottompar}{\par\vspace*{\fill}}{\clearpage}

\begin{document}

\lipsum[1]

\begin{bottompar}
\lipsum[2]
\end{bottompar}

\end{document}
Related Question