I have a formulation that consists of several subequations that I would like to refer to as a formulation and as individual equation in my article. Right now I have this:
\usepackage{hyperref}
\begin{subequations}
MySubequation
\begin{align}
a = b \label{eq:1a}\\
a = c \label{eq:2b}\\
\end{align}
\end{subequations}
I would like to refer to this formulation in text as "MySubequation" and hyperlink it to the formulation. However, if I use \ref{MySubequation} it only shows the counter number for the formulation. Is there any way I can reference to a set of subequations as a name?