考试类别:隐藏分数但仍在成绩表中

考试类别:隐藏分数但仍在成绩表中

我正在使用考试类来编写练习表。现在我想要类似

练习1(5+5分)

(一)拉拉

(b)露露

但我仍然想使用 \gradetable。

我的问题是您是否可以填写成绩表手册或隐藏 \question 的要点,因为像上面那样出现错误。

补充:我试过了

\documentclass[a4paper,11pt]{exam}                                                   
\noprintanswers 
\addpoints
\nopointsinmargin    

\begin{document}\parindent=0pt


\begin{center} %copied from handbook
\hqword{Aufgabe Nr.:}
\hpword{Punktzahl:}
\htword{\textbf{Summe}}
\hsword{Davon erreicht:}
\cellwidth{2.2em}
\settabletotalpoints{2334}
\gradetable[h][questions]
\end{center}


\begin{questions}
\uplevel{ \textbf{Exercise 1: (5+5 Points)}}
\question[3]\begin{enumerate}
\item lala
\item lulu
\end{enumerate}

\end{questions}

\end{document}

但是表中的数值不是 3,而是 10(=5+5)。

答案1

可能是這樣。

\documentclass[a4paper,11pt]{exam}
\usepackage{enumitem}
\noprintanswers
\addpoints
\nopointsinmargin   %<---------------
%\pointformat{}    %<---------------
\qformat{\textbf{Exercise \thequestion:\quad (\thepoints)}\hfill}
\begin{document}\parindent=0pt


\begin{center} %copied from handbook
\hqword{Aufgabe Nr.:}
\hpword{Punktzahl:}
\htword{\textbf{Summe}}
\hsword{Davon erreicht:}
\cellwidth{2.2em}
\settabletotalpoints{2334}
\gradetable[h][questions]
\end{center}


\begin{questions}
%\uplevel{ \textbf{Exercise 1: (5+5 Points)}}
\question[10]
\begin{parts}
\part lala
\part lulu
\end{parts}

\end{questions}

\end{document}

或者像这样:

\documentclass[a4paper,11pt]{exam}
\usepackage[shortlabels]{enumitem}
\noprintanswers
\addpoints
\nopointsinmargin   %<---------------
\pointformat{}    %<---------------
\qformat{}
\renewcommand{\questionshook}{%
\setlength{\leftmargin}{0pt}%
\setlength{\labelwidth}{-\labelsep}%
}
\begin{document}\parindent=0pt


\begin{center} %copied from handbook
\hqword{Aufgabe Nr.:}
\hpword{Punktzahl:}
\htword{\textbf{Summe}}
\hsword{Davon erreicht:}
\cellwidth{2.2em}
\settabletotalpoints{2334}
\gradetable[h][questions]
\end{center}


\begin{questions}
\uplevel{\textbf{Exercise 1: (5+5 Points)}}
\question[10]
\begin{parts}
\vspace{-1.5\baselineskip}
\part lala
\part lulu
\end{parts}

\end{questions}

\end{document}

在此处输入图片描述

但我还是不明白你的意思

因为像上面那样做会导致错误

相关内容