更改考試文檔類別中的 \parts

更改考試文檔類別中的 \parts

我在文檔類考試中使用 \parts。我注意到它總是以“a”開頭。有沒有辦法改變乳膠中的這種情況?我已經嘗試使用以下內容:

\setcounter{part}{2}

我想知道是否有任何方法可以以“b”或“c”開頭。

答案1

您的想法是正確的,但您想要更改的計數器partno不是part

代碼:

\documentclass{exam}
\begin{document}
\begin{questions}
\question
What if there were no air?
\begin{parts}

\setcounter{partno}{1}

\part[5]
Describe the effect on the balloon industry.
\part[5]
Describe the effect on the aircraft industry.
\end{parts}
\end{questions}
\end{document}

產量:

在此輸入影像描述

相關內容