更改考試設計中的起始題號

更改考試設計中的起始題號

我正在嘗試更改examdesign測試中問題的起始編號。我整個學期都必須重複使用掃描儀,所以我需要更改多項選擇題的起始數字。我玩過,\setcounter{question}{50}但似乎沒有效果。我知道計數器的工作方式examdesign很奇怪,因為它隨機化問題的方式,但我無法找到一種方法來改變編號的開始。我也嘗試過\renewcommand各種櫃檯,但運氣不佳。

\documentclass[11pt]{examdesign}
\title{Exam}
\author{Examiner}
\date{Today}
\class{This One}
\begin{document}
  \begin{multiplechoice}
    \setcounter{question}{50}
      \begin{question} Here's my question
         \choice{First choice}
         \choice[!]{Second choice}
      \end{question}
   \end{multiplechoice}
\end{document}

答案1

我找到了正確的技巧...

首先,正確的計數器是questionnumber。在設定計數器之前,您必須輸入

\resetcounterfalse

微量元素:

\documentclass[11pt]{examdesign}
\title{Exam}
\author{Examiner}
\date{Today}
\class{This One}
\begin{document}
  \begin{multiplechoice}
    \resetcounterfalse
    \setcounter{questionnumber}{50}
      \begin{question} Here's my question
         \choice{First choice}
         \choice[!]{Second choice}
      \end{question}
   \end{multiplechoice}
\end{document}

輸出:

在此輸入影像描述

相關內容