
Standardmäßig wird , , usw. \subpart
verwendet . Ich möchte dies in , , usw. ändern. Wie mache ich das?i.
ii.
(i)
(ii)
Antwort1
Sie können die\thesubpart
\renewcommand{\thesubpart}{(\roman{subpart})}
Der Punkt hinter dem Etikett kann entfernt werden durch
\renewcommand{\subpartlabel}{\thesubpart} %% to remove the dot
Code:
\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}
Weitere Einzelheiten finden Sie auf Seite 39 des exam
Handbuchs.