I want to refer to the Theorem and corollary at different places with the same number. But it's not working, any idea of an alternative to this issue. Thanking you in advance!
\documentclass[a4paper]{report}
\usepackage{hyperref}
\begin{document}
Theorem \hyperlink{1}{3.5.1}
\pagebreak
Please refer Theorem \hyperlink{1}{3.5.1}
Corollary \hyperlink{1}{3.5.1}
\pagebreak
Please refer Corollary \hyperlink{1}{3.5.1}
%I want to refer Theorem and corollary with a same number.
\end{document}
\labeland\refsystem to refer to theorems etc. Then whenhyperrefis added these\ref's are automatically made into hyperlinks. MakingTheorem 3.5.1by hand is a waste of time. – daleif Apr 21 '22 at 08:42amsthm, which providestheoremenvironment by declaring\newtheorem{theorem}{Theorem}. – Teddy van Jerry Apr 21 '22 at 08:53