I define a basic hypothesis called "Hyp A", using theorem environment, and also give it a label (say Hyp_A).
Then when I refer to this hypothesis, how to display something like "Let X and G satisfy Hyp A...", where "Hyp A" should link to the original definition of this hypothesis?
My method is as follow.
\newtheorem*{hyp}{} %I don't want the counter.
\begin{hyp} [\textbf{Hyp A}] \label{Hyp_A}
...
\end{hyp}
\nameref{Hyp_A}
Then I can have the following:
I don't like that parenthesis for the consistency reason.
Does any have suggestion to solve this problem?
Thanks in advance!


\newtheorem{hyp}{Hyp}and\renewcommand{\thehyp}{\Alph{hyp}}. NowHyp~\ref{Hyp_A}will do. – egreg Sep 02 '15 at 13:56