使用 \pointssum 解决选定的问题

使用 \pointssum 解决选定的问题

我想按主题选择问题,如 exsheets 手册中所述。但是,\pointssum 命令似乎不尊重这一点,而是添加所有问题的点数,甚至那些未被选中的问题。这是一个最小的工作示例:

\documentclass{article}
\usepackage{exsheets}

\begin{document}
The total number of points is: \pointssum

\SetupExSheets{use-topics={logic}}

\begin{question}[topic=logic]{2}
I want this question.
\end{question}

\begin{question}[topic=algebra]{3}
I don't want this question.
\end{question}

\end{document}

在此示例中,经过两次编译后, \pointssum 等于 5,而不是 2。我使用的是从 TeXLive 2016 获得的 exsheets。

相关内容