考试课程,“解决方案”未显示

考试课程,“解决方案”未显示

我一直尝试使用下面的代码,但解决方案块内的任何内容都没有显示出来。知道为什么吗?

\documentclass{exam}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{amsthm}

\begin{document}
\begin{questions}{}
\question test q?
\begin{solution}
    test ans
\end{solution}
\end{questions}
\end{document}

答案1

您需要表明您想要打印答案,例如通过answers在加载类时添加密钥,例如\documentclass[answers]{exam}

\documentclass[answers]{exam}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{amsthm}

\begin{document}
\begin{questions}{}
\question test q?
\begin{solution}
    test ans
\end{solution}
\end{questions}
\end{document}

还有其他办法,你也可以直接说\printanswers

相关内容