I want to refer to a set of consecutive equations. Following this and this I tried the following -
\documentclass{article}
\usepackage{amsmath}
\usepackage{hyperref,
cleveref%,hyperref
}
\crefrangelabelformat{equation}{(#3#1#4--#5#2#6)}
\crefname{equation}{Eq.}{Eqs.}
\Crefname{equation}{Equation}{Equations}
\begin{document}
\section{A}
\subsection{B}
\subsubsection{C}
\begin{align}
x &= y \label{eq:a}\\
y &= \sqrt{x-q}\\
z &= y-20l \label{eq:b}
\end{align}
\subsubsection{D}
\begin{align}
B &= D \label{eq:1}
\end{align}
From \crefrange{eq:a}{eq:b}, we can clearly see\ldots
\Crefrange{eq:a}{eq:b} shows \ldots \end{document}
I got output as "From Eqs. (1–3), we can clearly see. . . Equations (1–3) shows . . . "
Is there any way to get the output as "Equations (1.1.1.1–1.1.2.4) shows"? I just want to add the section number automatically to the referencing.
And why do I get an error if I load hyperref after cleverer?

(1)through(4)yet also (b) show these numbers as(1.1.1.1)through(1.1.2.4)when they are generated in a cross-reference to the equations, i.e., you want to use the equations' respective subsection numbers as "prefixes" in a cross-reference. Is this interpretation correct? Please advise. – Mico Feb 04 '22 at 06:54