考试类别中的题目规范和编号

考试类别中的题目规范和编号

我想制作一本包含练习和示例的教科书,我的问题是如何为问题命名,例如“练习 1.15”,其中 1.15 是第 1 节中练习 15 的问题编号,下一节中将是“练习 2.15”。有人知道我该怎么做吗?

答案1

像这样吗?

\documentclass[12pt]{exam}
\usepackage[a4paper, total={180mm,257mm},left=15mm,top=20mm]{geometry}
\renewcommand{\thequestion}{Excersise \thesection.\arabic{question}}


\begin{document}
  \section{Section}
    \begin{questions}
        \question This is question 1 of Section 1
        \question This is question 2 of Section 1
    \end{questions}
  \section{Section}
    \begin{questions}
        \question This is question 1 of Section 2
        \question This is question 2 of Section 2
    \end{questions}
\end{document}

相关内容