ドキュメント クラスの試験で \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}
収量: