I have a question about referencing list items. I'm making a question sheet for my students. Some questions are phrased in the form "use the following information for questions 5, 6 and 7"
So, my latex code looks something like this:
Code: Select all
\begin{enumerate}
\item Question one goes here
\item Question two goes here\\
Use the following information for questions 3, 4 and 5. $x = 1$, $y = 2$ and $z = 3$.
\item Question three goes here
\item Question four goes here
\item Question five goes here
\end{enumerate}
Obviously, if I end up adding more questions before questions 3, 4 and 5, then I'd want it to say "use the following for questions 4, 5, and 6"...or whereever those questions end up. So, I'm wondering if there's some way to reference the item numbers in my enumerated list?