I'm using the multicol package and would like to align the baseline of the two columns. The simple use of a \paragraph heading seems to throw off the alignment, which can be pretty jarring visually. Is there any way to force the two columns to stay aligned with one another?
For example, the following produces a document with two columns, which look nice except that the \paragraph headers on the right column aren't aligned with the text on the left:
\documentclass{article}
\usepackage{multicol}
\usepackage{lipsum}
\begin{document}
\begin{multicols}{2}
\paragraph{foo} \lipsum[1-2]
\paragraph{bar} \lipsum[4]
\paragraph{morebar} \lipsum[4]
\paragraph{baz} \lipsum[7-10]
\end{multicols}
\end{document}
Resulting in this:

(I'd like the "morebar" to align with "Mau-" or "rhoncus".)
\paragraphto a simple 1x or 2x baselineskip looks good. – Noah Apr 23 '12 at 15:04