In short, I would like to reproduce the vertical margins below the definitions and double bar below the remarks as shown in the following picture:
I've already browsed the posts without any solution. The example in this post is not adequate.
\documentclass{article}
\usepackage{amsthm}
\usepackage[framemethod=tikz]{mdframed}
\usepackage{lipsum}% just to generate text for the example
\newtheorem{theo}{Theorem}
\surroundwithmdframed[outerlinewidth=0.4pt,
innerlinewidth=0.4pt,
middlelinewidth=1pt,
middlelinecolor=white,
bottomline=false,topline=false,rightline=false]{theo}
\begin{document}
\begin{theo}
\lipsum[4]
\end{theo}
\end{document}
Question: How to have the double bar below the theorem as in the image and so the double waved line?
