Page LayoutAlign multicols on the bottom

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
skip
Posts: 4
Joined: Wed Sep 30, 2009 12:19 pm

Align multicols on the bottom

Post by skip »

I have a multicols environment set up like

Code: Select all

\begin{multicols}{2}
% some text
\columnbreak
% some more text
\end{multicols}
The text in the right hand column (after the columnbreak) is usually a bit shorter than that on the left and I would like it to be vertically aligned so the bottoms of both columns are aligned. I tried putting a \vfill at the top the the right hand column but that didn't seem to do anything. Any other ways to try and achieve this?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

skip
Posts: 4
Joined: Wed Sep 30, 2009 12:19 pm

Align multicols on the bottom

Post by skip »

I managed to solve this:

Code: Select all

\begin{multicols}{2}
% text
\vfill
\columnbreak
\vspace*{\fill}
% text
\end{multicols}
prosper
Posts: 4
Joined: Wed Mar 24, 2010 7:42 pm

Align multicols on the bottom

Post by prosper »

Thank you, skip,

after carefully examining your code, I decided to switch orders, resulting in an alignment by the top, which was my purpose.

Code: Select all

		\begin{multicols}{2}
			\begin{align*}
% some equations
			\end{align*}
			\vfill
			\columnbreak
			\begin{align*}
% related equations
			\end{align*}
			\vspace*{\fill}
		\end{multicols}
Post Reply