[Tex/LaTex] Create a series of connected, list-filled boxes (flowchart?)

boxesdiagramslists

I would like to create a series of horizontally linked 'text boxes', with arrows between each one. Each box will contain some text (probably a list with a title). I would like it to look something like this:
enter image description here

What would be the best package/method for going about doing this?

Ideally, the overall width of the three boxes would be automatically resized to fill the full width of the column they are in, but this is only a secondary requirement.

(I realise that this is effectively a flow chart—however, all the flowchart packages I've come across seem more suited to the free-form, spidery flowcharts and seem to be overkill for this purpose. Feel free to suggest them nonetheless if they are suitable.)

Best Answer

A quick and dirty solution (without any extra package):

\fbox{\parbox[t]{6em}{Title \#1\\Item\\Item\\Item\\Item}}%
\raisebox{-4ex}{$\to$}%
\fbox{\parbox[t]{6em}{Title \#2\\Item\\Item\\Item\\Item\\Item}}%
\raisebox{-4ex}{$\to$}%
\fbox{\parbox[t]{6em}{Title \#3\\Item\\Item\\Item}}

And you can define some commands for convenience.

\newcommand\mybox[2][6em]{%
  \raisebox{4ex}{\fbox{\parbox[t]{#1}{#2}}}}
\newcommand\Rarrow{$\rightarrow$}

\mybox{Title \#1\\Item\\Item\\Item\\Item}%
\Rarrow
\mybox{Title \#2\\Item\\Item\\Item\\Item\\Item}%
\Rarrow
\mybox{Title \#3\\Item\\Item\\Item}

This is enough, if the requested diagrams are very simple. However, for more complicated diagrams (at arbitrary position, with curves, shaded boxes, etc.), it is better to use more powerful tools, like tikz and pstricks.