I am trying to typeset a document with two column layout. I want to use \vfill to force some text to the bottom of the page.
Code: Select all
\documentclass[a4paper]{article}
\usepackage{multicol}
\setlength{\columnsep}{0.5in} % default=10pt
\setlength{\columnseprule}{0.25pt} % default=0pt (no line)
\begin{document}
\thispagestyle{empty}
\begin{multicols}{2}
Test
\vfill
This should come at bottom of page
\columnbreak
Test
\end{multicols}
\end{document}