This is probably very simple to do, but I am trying to write restatable theorems with boxes around them. Looking at this answer, box around theorem statement, I get a way to put boxes around a theorem, but then using the restatable option removes the boxes, as shown below:
\documentclass{article} \usepackage{mdframed} \usepackage{lipsum} \usepackage{thmtools, thm-restate} \newmdtheoremenv{thm}{Theorem} \begin{document} \begin{thm} \lipsum*[1] \end{thm} \begin{restatable}{thm}{Lips} \lipsum*[1] \end{restatable} \end{document} 

