I am using cleveref to cross-reference everything. Sometimes I write the reference inline like eq.(1). That is fine. But when it is enclosed in parenthesis it turns out like (eq.(2)). Which is not so nice.
Is it possible to somehow toggle the use of parenthesis in cleveref?
Here's an MWE:
\documentclass{article}
\usepackage{cleveref}
\begin{document}
\begin{equation}\label{one}
12+2=34
\end{equation}
\begin{equation}\label{two}
1+2=4
\end{equation}
if \cref{one} is correct than (\cref{two})!
\end{document}

