我该如何修复答案包中的这个错误?

我该如何修复答案包中的这个错误?

我刚刚更新了答案包。我复制了简单的例子

\documentclass[12pt,a4paper]{article}
\usepackage{answers}
\Newassociation{sol}{Solution}{ans}
\newtheorem{ex}{Exercise}
 \begin{document}
\Opensolutionfile{ans}[ans1]
\section{Problems}
 \begin{ex}
First exercise
 \begin{sol}
 First solution.
 \end{sol}
 \end{ex}
 \begin{ex}
 Second exercise
 \begin{sol}
 Second solution.
 \end{sol}
 \end{ex}
 \Closesolutionfile{ans}
 \section{Solutions}
 \input{ans1}
 \end{document}

当我编译时,我得到了 在此处输入图片描述

我该如何修复这个错误?

相关内容