使用考试类时,有没有办法更改创建的项目答题纸的格式\answerline
?
对于一个问题,标签是 1。
对于零件,标签是(a)
对于子部分,标签是 i。
我希望它们分别是 (1)、(a) 和 (i)。
例如
\documentclass[answers]{exam}
\begin{document}
\begin{questions}
\question First one \answerline
\begin{parts}
\part first part \answerline
\begin{subparts}
\subpart A subpart \answerline
\end{subparts}
\end{parts}
\end{questions}
\end{document}
答案1
您可以重新定义\questionlabel
和,\subpartlabel
分别控制与问题和子部分相对应的数字周围的装饰:
\documentclass[answers]{exam}
\renewcommand\questionlabel{(\thequestion)}
\renewcommand\subpartlabel{(\thesubpart)}
\begin{document}
\begin{questions}
\question First one \answerline
\begin{parts}
\part first part \answerline
\begin{subparts}
\subpart A subpart \answerline
\end{subparts}
\end{parts}
\end{questions}
\end{document}