附加行用于显示考试包中的百分比分数

附加行用于显示考试包中的百分比分数

平均能量损失

 \documentclass[addpoints ,12pt]{exam}

\usepackage{amsmath}

\pagestyle{head}

\runningheader{\class}{\examnum\ - Page \thepage\ of \numpages}{\examdate}
\runningheadrule

\pointname{ Pkt.}
\marginpointname{|\hspace{2mm} Pkt.}
\qformat{\small Q \thequestion  \dotfill {\totalpoints\ |............ Punkte}}

\begin{document}
    
    
    
    \begin{center}  
        \gradetable[h]
    \end{center}


    \begin{questions}
    
    
    \question $2+2=4?$
    
    \begin{parts}
        \part[3] {
            $f(x)= \cfrac{1}{2x-7}$}
   \end{parts}
    \end{questions}
\end{document}

电流输出 在此处输入图片描述

我需要在 Points 行下添加一行来显示百分比。此包中是否实现了满足此请求的功能?如果没有,还有其他解决方案吗?

我需要的类似截图新行显示为红色- 但是,我想要黑色的解决方案 - 红色是为了突出显示):

在此处输入图片描述

答案1

我对考试类别不太了解,但\chbpword{<name>}你可以给奖励积分起一个不同的名字。也许这对你有用。

\documentclass[addpoints]{exam}

\begin{document}

    \chbpword{Percentage}
    
\begin{center}
    \combinedgradetable[h][questions]
\end{center}

 
    \begin{questions}
        \question[2] 
        $2+2=?$

        \question[2] 
        $1+2=?$
    \end{questions}

\end{document}

在此处输入图片描述

相关内容