Hello everybody out there using TeX,
Is there a possibility to draw a frame over a columnbreak when using for example the multicol package?
I've already tried several possibilities and done extensive websearch. Interestingly, there seem to be several people having this problem, but there's no solution available in the web.
Unfortunately, the framed and mdframed package don't work with the multicol package according to their manuals.
The listings package, seems to have a bug: it does split text on different columns correctly, but the colour highlights wrong sections:
\documentclass[landscape,a4paper]{article}
\usepackage{color,lipsum,listings,multicol}
\lstset{%
backgroundcolor=\color{green},
escapechar={\%}
}
\begin{document}
\begin{multicols*}{4}
\colorbox{green}{
\begin{lstlisting}
%
\section{First section}
\lipsum
%
\end{lstlisting}
}
\end{multicols*}
\end{document}
I would be very grateful for any hints towards a solution.
One additional step in the right direction might be the boites package:
\documentclass[a0,landscape]{a0poster}
\usepackage{boites,color,lipsum,multicol}
\begin{document}
\begin{multicols}{4}
\begin{breakbox}
\lipsum
\end{breakbox}
\end{multicols}
\end{document}
But this does not allow for background colouring using pdflatex.
