estou criando um caderno de exercícios usando o pacote de exercícios.
entendo que posso adicionar um rótulo a uma pergunta para vincular uma resposta a uma pergunta específica.
no entanto, gostaria de adicionar um link para a resposta da pergunta. então parece algo como:
Fonte de texto atual:
\usepackage[answerdelayed]{exercise}
\begin{Exercise}
What is the value of 2+5?
\end{Exercise}
\begin{Answer}
7
\end{Answer}
<rest of the document>
\shipoutaAnswer
Saída atual:
Exercise 1: What is the value of 2 + 5?
<rest of the document>
Solution 1: 7
Saída desejada:
Exercise 1: What is the value of 2 + 5?
<Link to Solution at the end of the document>
<rest of the document>
Solution 1: 7
Responder1
A exercise
embalagem possui uma forma específica de gerenciar o rótulo.
Veja odocumentação do pacotesubseção 2.4.
\documentclass{article}
\usepackage{hyperref}% you must load it before the exercise package
\usepackage[answerdelayed]{exercise}
\begin{document}
\begin{Exercise}[label={mylabel}]
What is the value of 2+5? (To see the answer click here: \refAnswer{\ExerciseLabel})
\end{Exercise}
\begin{Answer}[ref=\ExerciseLabel]
7
\end{Answer}
rest of the document
\newpage % I've added a new page only to clearly show the hyperlink. Of course, you don't need it in your document.
\shipoutAnswer
\end{document}
Responder2
Assim:
\documentclass{article}
\usepackage{exercise}
\usepackage{hyperref}
\begin{document}
\begin{Exercise}
Some introductory text.
\Question The first question
\end{Exercise}
See the answer \hyperref[one]{here}.
\newpage
\begin{Answer}[ref=first]
The answer to question~\ref{first}.\label{one}
\end{Answer}
\end{document}