文档类考试中没有括号的问题部分

文档类考试中没有括号的问题部分

文档类考试中没有括号的题目部分编号如何填写?

\documentclass{exam}
\begin{document}
\begin{questions}
\question 
    \begin{parts}
    \part The sub question 1 ?
    \part The sub question 2 ?  
    \end{parts}
\end{questions}
\end{document}

其输出将是

  1. (a)子问题 1?

    (b)子问题 2?

对于子问题的数量,我需要获得相同的输出(不带括号),例如

  1. a. 子问题1?

    b. 子问题2?

答案1

调整宏\partlabel

在此处输入图片描述

\documentclass{exam}

\renewcommand\partlabel{\thepartno.}% Default is (\thepartno)

\begin{document}

\begin{questions}
  \question The question?

  \begin{parts}
    \part The sub question~1?
    \part The sub question~2?
  \end{parts}

\end{questions}

\end{document}

相关内容