如何使用加号将考试类别的评分部分分成两个或多个部分?

如何使用加号将考试类别的评分部分分成两个或多个部分?

我已经开始学习文档类exam来设置考试题目。我可以使用以下代码为特定问题分配分数。

\documentclass[addpoints,12pt]{exam}
\begin{document}
\begin{questions}
\question[5] What is Dot dot? What is the significance of a dot dot? Explain with an example. Draw figure if needed.
\end{questions}
\end{document}

在我们机构,我们将总分分成几部分来指定子问题的分数。下面的图片可以更清楚地说明。

在此处输入图片描述

更具体地说,我想做一些事情:

\question[1+4]

代替:

\question[5]

怎么做?

答案1

找到了一个临时解决方案,但它取消了总结分数功能。addpoints如果我指定noaddpoints,它就会接受像这样的参数1+4。这是更改后的实现。

\documentclass[noaddpoints,12pt]{exam}
\begin{document}
\begin{questions}
\question[1+4] What is Dot dot? What is the significance of a dot dot? Explain with an example. Draw figure if needed.
\end{questions}
\end{document}

但我不知道如何在不撤销总结功能的情况下做到这一点。

相关内容