更改考试文档类别中的 \parts

更改考试文档类别中的 \parts

我在文档类考试中使用 \parts。我注意到它总是以“a”开头。有没有办法在 latex 中改变这种情况?我已经尝试使用以下方法:

\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}

产量:

在此处输入图片描述

相关内容