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.