Is it possible to enumerate theorems as Theorem A, Theorem B, propositions as Proposition A, .... e.g.:
Proposition A ...............
Theorem B ...........
Theorem C ........
Corrolary D .............
Theorem E .......
Conjecture F ....
I try
Code: Select all
\usepackage{amsthm}
\newtheorem{propA}{Proposition}
\renewcommand{\thepropA}{\Alph{propA}}
\newtheorem{thmB}{Theorem}
\renewcommand{\thethmB}{\Alph{thmB}}
Thank you in advance