I want to be able to put an mdframed object inside of an outline environment without it being indented to the indentation level that I'm at, and so that I can continue the outline after the mdframed like below:
I. text text text
A. text text text
__________________________
| |
| MD FRAMED STUFF |
| |
| |
|_________________________|
B. text text text
Below is the code that I'm trying to use, but I can't get back to level \2 after level \0. I've tried adding the leftmargin =-1.75cm and that will move the mdframed over, but I have to guess at the amount by which to move it over (ie, -1.75 cm or -1.7cm or ...) and then if I add more to my outline, it is a less than ideal strategy. Please help!
\documentclass[11pt]{article}
\usepackage{enumerate}
\usepackage{outlines}
\usepackage{enumitem}
\setenumerate[1]{label=\Roman*.}
\setenumerate[2]{label=\Alph*.}
\setenumerate[3]{label=\arabic*.}
\setenumerate[4]{label=\alph*.}
\usepackage{mdframed}
\title{Notes}
\author{}
\date{}
\begin{document}
\maketitle
\begin{outline}[enumerate]
\1 text text text
\2 text text text
\0
\begin{mdframed}[frametitle=MD FRAMED STUFF:]
MD FRAMED STUFF
\end{mdframed}
\2 text text text
\end{outline}
\end{document}
At this site, in section 1.4 they seem to be doing something like what I'm interested in, but I don't understand what each part means, and if I could just adjust set those items for the area I want the mdframed, and not the entire paper.
http://mirrors.ibiblio.org/CTAN/macros/latex/contrib/outlines/outlines.pdf

