选择具体问题

选择具体问题

使用考试包,我正在制作主题工作表。假设我制作了一张包含 10 个问题的工作表,但我只想看到问题 2、5、7 和 10。我该如何创建它,以便在 pdf 上只显示特定问题。所以基本上工作表就像一个问题库,而不是一整张工作表/试卷。此外,我希望显示的问题编号为 1、2、3... 不管它实际上是 2、5、7...

答案1

您可以使用\iffalse,...,\fi它来跳过想要的问题。

\documentclass[answers]{exam}


    \begin{document}

    \begin{questions}

    \question Approximate $\displaystyle \int_0^1 \sin x^2 \, dx$ within $.001$ of
    its true value.


    \question Calculate the $$\int_{(5,6)}^{(3,3)} \mathbf{F}\cdot d\mathbf{l}$$
    for $\mathbf{F}(x,y,z)=xy\mathbf{a}_x + (3x-y^2)\mathbf{a}_y$.

    \iffalse
    \question Skipped question.
    \fi

    \question Find the gradient of\\[0.5cm]
    a- $f(x,y,z)=xy^2+2z$\\
    b- $f(r,\phi,z)=2rsin\phi$\\
    c- $f(R,\theta,\phi)=2\theta+R^2$\\

    \question Last question.

    \end{questions}
    \end{document}

在此处输入图片描述

相关内容