How can I reference a range of equations in the form I want? For example, I want to reference a range of equations starting with Eq. (A.3) and ending with Eq. (A.7), what is a simple way to get the reference to display as Eq. (A.3-7)? I know how to get (A.3-A.7) but I don't love the way it looks.
ETA working example:
\begin{align}
a &= b \label{eq:beg} \\
b &= c \\
c &= d \\
d &= e \\
e &= f \label{eq:end}
\end{align}
You can see from Eq.~(\ref{eq:beg}-(\ref{eq:end}) that $a = f$
This displays
You can see from Eq. (A.3-A.7) that a=f
but I want it to display
You can see from Eq. (A.3-7) that a=f

\documentclass{...}and ending with\end{document}. – DG' Oct 07 '20 at 09:54cleverefpackage to create cross-referencing call-outs? – Mico Oct 07 '20 at 10:00cleveref's machinery. – Mico Oct 07 '20 at 10:11