默认情况下,\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 页。