如何更改考试文档类中 \subpart 的枚举?

如何更改考试文档类中 \subpart 的枚举?

默认情况下,\subpart使用i.ii.等。我想将其更改为(i)(ii)等。我该怎么做?

答案1

您可以重新定义\thesubpart

\renewcommand{\thesubpart}{(\roman{subpart})}

标签后面的点可以通过以下方式删除

\renewcommand{\subpartlabel}{\thesubpart}   %% to remove the dot

代码:

\documentclass{exam}
\renewcommand{\thesubpart}{(\roman{subpart})}
\renewcommand{\subpartlabel}{\thesubpart}   %% to remove the dot
\begin{document}
\begin{questions}
\question How are you?
\begin{parts}
    \part ...
    \begin{subparts}
    \subpart ...
    \subpart ...
    \subpart ...
    \end{subparts}
    \part ...
\end{parts}
\end{questions}
\end{document}

在此处输入图片描述

有关更多详细信息,请阅读exam手册第 39 页。

相关内容