The mdframed environment fails to break into several pages (slides) when used in a frame environment from the beamer class.
In the other hand, the boitecoloriee environment from the boites package can be broken into several pages.
Here is a document that demonstrates the issue. It should not be compiled directly into pdf because boitecoloriee uses pstricks.
\documentclass{beamer}
\usepackage{xcolor,boites,boites_exemples,pstricks}
\usepackage{mdframed}
\usepackage{lipsum}
\begin{document}
\begin{frame}[allowframebreaks]{Using \texttt{boitecoloriee}}
\begin{boitecoloriee}
\lipsum[1-2]
\end{boitecoloriee}
\end{frame}
\begin{frame}[allowframebreaks]{Using \texttt{mdframed}}
\begin{mdframed}
\lipsum[1-2]
\end{mdframed}
\end{frame}
\end{document}
Maybe is there a way to fix mdframed to work in slides too. Any clues?
tcolorboxpackage? – Romildo Oct 05 '13 at 21:05