I'm writing a long document in which the key pieces of information are in environments (itemize, for the things to do, equation, lemma, theorems for the other) separated by text and proofs.
To ease the communication with the co-authors I'd like to produce a shorter version of my document containing only the structure (section, subsection,...) and some environments (all but the proof really).
For example:
\documentclass{amsart}
\newtheorem{theorem}{Theorem}
\begin{document}
\section{Intro}
\begin{itemize}
\item todo 1
\item todo 2
\end{itemize}
bla bla bla
\section{First result}
\begin{theorem}
(hopefully) nice thing
\end{theorem}
\begin{proof}
bla bla bla
\begin{equation}
E=mc^2
\end{equation}
\end{proof}
\end{document}
should be compiled as if it where
\documentclass{amsart}
\newtheorem{theorem}{Theorem}
\begin{document}
\section{Intro}
\begin{itemize}
\item todo 1
\item todo 2
\end{itemize}
\section{First result}
\begin{theorem}
(hopefully) nice thing
\end{theorem}
\end{document}
This is doable by hand, but I aim for a more efficient solution. Could you please find one?