Follow-up question to the accepted answer here and here. The latter seems promising, with the caveat that it doesn't work.
- I'm using
mdframedwithtikz- but without "theorems". However, I too would like to see the title upon page breaks with a "continued" hint. How?
Screenshot, followed by MWE:

\documentclass[a4paper]{article}
\usepackage{graphicx}
% \usepackage[heightrounded=true, textheight=735pt, textwidth=430pt, layoutvoffset=27pt, hcentering, includefoot, headheight=26pt, headsep=10pt, footskip=10pt, showframe]{geometry}
\usepackage[framemethod=TikZ]{mdframed}
% \mdfsetup{skipabove=0pt,skipbelow=1\topskip, nobreak=true, innertopmargin=0.5\baselineskip, innerbottommargin=0.5\baselineskip, frametitleaboveskip=2pt, frametitlebelowskip=1pt}
%%%
\mdfdefinestyle{my_style_testing}{frametitlebackgroundcolor=pink}
\usepackage{lipsum}
\begin{document}
\lipsum[4]
\vspace{5cm}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{mdframed}[style=my_style_testing,frametitle=\color{blue}{What an interesting title this is...}]
hello world
\lipsum[1]
\vspace{5cm}
\lipsum[3]
\vspace{5cm}
\lipsum[2]
\end{mdframed}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}

continuedin title, will do the trick. For longer documents the "automatic" solution would be desirable, though. – nutty about natty Jun 22 '14 at 10:00