按考试类别定义的调整表

按考试类别定义的调整表

问题:是否可以gradetable使用exam文档类来生成可能有用的表格,用于练习表和类似物?

这是我的想法:

\documentclass[10pt,addpoints]{exam}

\begin{document}

\begin{questions}
\question Is it true that \(x^n + y^n = z^n\) 
if \(x,y,z\) and \(n\) are positive integers? Explain.

\question Prove that the real part of all non-trivial zeros of the function
\(\zeta(z)\) is \(\frac{1}{2}\) \ldots

\question Another question.
\end{questions}

\gradetablestretch{2}
\cvqword{Problem}
\cvpword{Understood}
\cvbpword{Confused}
\cvtword{Cumulative:}
\cvsword{\phantom{someemptytext}Note\phantom{someemptytext}}
\combinedgradetable[v]

\end{document}

在此处输入图片描述

这个想法是,学生可以拥有一种用于家庭作业练习或类似作业的封面,并且他们可以轻松地关注他们觉得自己理解或不理解的问题(以促进课堂讨论或提问)。我还认为有一个仅用于记笔记的专栏会很有用。看起来我可以利用 提供的一些选项,但主要的问题是,如果不使用该功能exam,我就无法制作。gradetableaddpoints

我尝试查看软件包文档,甚至exam.cls尝试了解如何找到一个糟糕的解决方案,但遗憾的是我无法有效地找到任何方法。

最终,我希望在当前 0 所在的位置留有空白,并完全删除底行(我尝试过cumulative想出total一些可能有用的东西,但这是一个无限的延伸)。

我考虑尝试以某种方式复制该Note列的样式(通常列出score稍后由讲师填写的内容),但是我不知道如何通过查看类文件或包文档来做到这一点。

相关内容