Is there a possibility to reference subequations with cleveref without parentheses?
MWE:
\documentclass{scrartcl}
\usepackage{amsmath}
\usepackage{cleveref}
%\crefformat{subequations}{eq.~#2#1#3}% doesn't work as intended
\begin{document}
Equation:
\begin{subequations}
\begin{align}
a &= b \label{eq:sub1}\
c &= d. \label{eq:sub2}
\end{align}
\end{subequations}
References:
\ref{eq:sub1} without parentheses!
\cref{eq:sub1} with parentheses
\end{document}
Apparently the "regular" \refcommand references the subequation without the parentheses. Using the commented out line with \crefformat didn't change anything at all unfortunately.
The notated counter (1a) and (1b) behind each subequation should not be affected by the required changes to the style of references.
equationtosubequationsthough – user202729 Jun 06 '22 at 14:23