
시험 패키지를 사용하여 주제에 대한 워크시트를 만들고 있습니다. 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}