I made a frame using the framed package. When a pagebreak breaks it, it is divided in two separate frames. I would like the bottom and top of these two frames to be open, and an oframe option is supposed to do this, but I can't seem to implement it.
My frame contains multiple lines of text and \includegraphics.
This is what I want to frame:
\begin{center}
\includegraphics[width=100mm]{image.jpg}
\end{center}
(Text)
\begin{center}
Text\\
Text\\
\end{center}
I tried this to no avail:
\begin{oframed}
\begin{center}
\includegraphics[width=100mm]{image.jpg}
\end{center}
(Text)
\begin{center}
Text\\
Text\\
\end{center}
\end{oframed}
The option framed instead of oframed works though. It seems I need to use the \MakeFrame command in some way.
mdframedlooks. – Man Jan 23 '13 at 09:30mdframedis highly customizable so the way it looks depends on you ;-) See for example http://tex.stackexchange.com/q/57739/4918 or http://tex.stackexchange.com/q/47537/4918 – Tobi Jan 23 '13 at 09:53\begin{framed}? – Man Jan 23 '13 at 10:05