5

I have a document that uses the multicols package to create a 3-column layout with three sections inside. For the first column, I have two sections followed by a column break. For the second and third columns, however, I want to have a section span the width of both the columns. Is there an easy way to do this?

Here's a diagram of what I want the layout to look like:

Col1 Col2 Col3
--- | --------
--- | --------
--- | --------
--- | --------

Edit: Posted answer below.

lockstep
  • 250,273
squidbear
  • 1,017

1 Answers1

9

After doing more searching, I discovered that the parcolumns package is able to do what I want.

Preamble:

\usepackage{parcolumns}
\usepackage{lipsum}

Document:

\begin{parcolumns}[sloppy, rulebetween, colwidths={1=0.3\textwidth, 2=0.6\textwidth}, distance={0.1\textwidth}]{2}
\colchunk[1]{%
    \lipsum[1]
}
\colchunk[2]{%
    \lipsum[1]
}
\colplacechunks
\end{parcolumns}

Note: The flowfram package looked promising, but using parcolumns (at least for me) worked better for this.

squidbear
  • 1,017