Is there a way to automatically refer to a set of equations in an align environment?
E.G. I would like this to read "From Eqs.(1-3), we can clearly see..."
\documentclass{article}
\usepackage{amsmath}
\begin{document}\thispagestyle{empty}
\begin{align}\label{eqn:myeqs}
x =& y\\
y = \sqrt{x-q}\\
z =& y-20l
\end{align}
\begin{equation}\label{eqn:somethingelse}
E = \hbar \omega
\end{equation}
From Eqs. \ref{eqn:myeqs}, we can clearly see...
\end{document}
I've seen a way to do this manually, but I'm curious to see if there's a simple, automated way to handle this.
alignand usecleverefs\crefrangeas in http://tex.stackexchange.com/questions/18986/is-there-a-standard-way-to-refer-to-a-range-of-equations/18988#18988 Edit: Sorry, the formatting is a little different. – Torbjørn T. Feb 10 '14 at 20:51\crefname{equation}{Eq.}{Eqs.}got me exactly to what I need! Would you be able to submit this as answer so I can give you credit? I realize its similar to the previous one, but I tried numerous search terms and couldn't arrive at it so it may be helpful to others to have this example. – zje Feb 10 '14 at 21:05