I would like to know if there is an easy way to the following.
I have a statement in later part of an article, say Theorem G with \label{Thm:G}. In the introduction I would like to state this theorem as
Theorem G
2 + 2 = 4.
Is this possible?
I would like to have Theorem 2.1 in the Intro section.
%---- MWE
\documentclass{article}
\usepackage{amsthm}
\newtheorem{thm}{Theorem}[section]
\begin{document}
\section{Intro}
\section{body}
\begin{thm}\label{theorem G}
$2+2 = 4$.
\end{thm}
\end{document}
