
デフォルトでは、は、などを\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 ページをお読みください。