This is the minimal working example:
\documentclass[a4paper,11pt]{exam}
\begin{document}
\section{ONE}
\begin{questions}
\question First question
\question Second questoion
\end{questions}
\section{TWO}
\begin{questions}
\question First question
\question Second questoion
\end{questions}
\end{document}
The problem I have with this is that there is a warning for multiply defined labels. Which in a very big document sometimes makes the compilation hang.
Is there a fix for that?
question@\arabic{question}which causes multiple labels because the counter is reset... – cgnieder Aug 08 '14 at 15:33But, yes, the counter is reset, but I get the mulptiply defined label warning because the counter is reset each time.
And this is a real problem as the document gets bigger because of all the mulptiply defined labels warning and the compiler hangs.
– piptin Aug 08 '14 at 15:35