该课程的手册exam
写道:
文档
exam
类可以打印评分表,按问题编号或页码索引。(第 78 页)
我正在参加一场考试,考试中有四十道选择题,由机器评分,三道开放式问题,由人工评分。所以这两个选项都不适合我。我需要的是一个按问题类型或按章节或小节索引的表格。换句话说:
Section | Poss. score | Actual score|
=====================================
MC | 40| |
-------------------------------------
Essay 1 | 20| |
-------------------------------------
Essay 2 | 20| |
-------------------------------------
Essay 3 | 20| |
-------------------------------------
可以这样做吗?它似乎不适合现有的任何一种方案,因为它将所有多项选择题汇总到一行,但分别列出每个开放式答案。下面是我想到的唯一解决方案;它确实创建了我想要的表格,但 (a) 它将 MC 部分编号为问题 1,这是我不想要的,并且 (b) 它要求我在论文部分放置一个虚拟问题,这也是我也不想要的。
平均能量损失
\documentclass[addpoints]{exam}
\begin{document}
\begin{coverpages}
\begin{center}
\huge
Final Exam\\
English 213\\
June 19, 2017\\
\vspace{1in}
Your name:\dotfill
\vspace{1in}
\settabletotalpoints{100}
\partialgradetable{myrange}[v][questions]
\end{center}
\end{coverpages}
\section*{Open response (60 points)}
\begin{questions}
\begingradingrange{myrange}
\question [40] MC
\question [20] Who's the better leader: Odysseus or Ralph? Why? Refer to both texts, as specifically as your memory allows.
\question [20] Who makes the transition to adulthood more successfully: Holden or Telemachus?
\question [20] In this year's texts, who makes successful moral choices? Who doesn't? Why?
\endgradingrange{myrange}
\end{questions}
\end{document}
更新
该titledquestion
命令处理第一个问题(表格中标记为“问题 1”的 MC 部分),因为我可以列出\titledquestion{Multiple Choice}[40]
等等。我仍然无法弄清楚另一个问题(论文问题列表中的虚拟问题)。