I'm using cleverref in my document. Unfortunately I'm receiving some strange bugs. By referring to equation \label{eg:hey}, I'm writing \cref{eq:hey} and get equation (1,1). Often that results in equation, but sometimes it bugs and turns itself into section 1.1.1.
Any ideas why? Ive checked and doubled/triplechecked that I don't have any multiple defined references.
My reference code:
\hypersetup{colorlinks = true,citecolor = title,linkcolor = title,urlcolor = title}
\usepackage[noabbrev]{cleveref}
\creflabelformat{figure}{\color{tudelft-dark-blue} \textbf{#1#2#3}}
\crefname{figure}{figure}{figures}
\creflabelformat{table}{\color{tudelft-dark-blue} \textbf{#1#2#3}}
\crefname{table}{table}{table}
\creflabelformat{equation}{[#1#2#3]}
\creflabelformat{equation}{\color{tudelft-dark-blue}(#1#2#3)}
\crefname{equation}{\color{tudelft-dark-blue}equation}{equations}
\crefrangeformat{equation}{eq. #3[#1]#4--#5[#2]#6}
\crefrangeformat{equation}{equation #3#1#4--#5#2#6}
My code:
\cref{eq:K1}
\begin{eqnarray}
K_1 &=&\sigma_n Y\sqrt{\pi a}\label{eq:K1}
\end{eqnarray}
The result:
My result by changing \cref into \ref
Please help!



