When my ntheorem Box spans multiple pages, I want it to have a hint on each page, that it is a continuation. How can this be done?
Below is some sample code, spanning a box over two pages, which is yet missing a hint on the second page, that it is a continuation.
\documentclass[]{article}
\usepackage{blindtext}
\usepackage{framed}
\usepackage{pstricks}
\usepackage[framed]{ntheorem}
\begin{document}
\newshadedtheorem{test}{Example}
\begin{test}
\textbf{Some sample text}
\blindtext[5]
\end{test}
At the beginning of the box at page 2 it shall have\\
\textbf{Example 1 (Continued)}.\\
(Included at the top of the box, not before the box).
\end{document}
Preview:



\definecolor{myColor}{rgb}{0.9,0.9,0.9}followed by\shadecolor{myColor}(both before newshadedtheorem) Can you please tell me, how to migrate this to your solution? – me.at.coding Sep 11 '13 at 17:58backgroundcolor=gray!50,tobackgroundcolor=myColor,. – Gonzalo Medina Sep 11 '13 at 18:00tcolorboxpackage. – Gonzalo Medina Sep 11 '13 at 20:03