Search found 1 match
- Thu Dec 18, 2025 4:52 pm
- Forum: General
- Topic: \savebox in \newenvironment
- Replies: 9
- Views: 11713
Re: \savebox in \newenvironment
With \bgroup and \egroup instead of the braces: \documentclass{article}
\usepackage{ntheorem}
\newsavebox{\mybox}
\newenvironment{myenviron}{%
\savebox{\mybox}\bgroup}{\egroup%
\usebox{\mybox}}
\begin{document}
\begin{myenviron}
This is a test.
\end{myenviron}
\end{document}
This is how we ...