考試時將問題和答案分開

考試時將問題和答案分開

我正在使用考試包,我想將答案行與問題分開,以便所有答案行一起位於每頁的底部。

到目前為止,它可以使用\vfillbefore \answerline,但當問題包含多個部分時則不行。

請參考圖片以了解我想要實現的目標。在此輸入影像描述

答案1

我無法僅使用exam類別命令來完成這個問題。但是,使用tikz它相當簡單。

代碼:

\documentclass[addpoints]{exam}
\usepackage{tikz}
\begin{document}
\pointsinrightmargin
\bracketedpoints
\begin{questions}
\question The seventh term, $u_7$, of an arithmetic sequence is 28. The tenth term, $u_{10}$, of the same sequence is 37.
\begin{parts}
\part[2]Find $d$, the common difference of the sequence.
\part[2]Find $u_1$, the first term of the sequence.
\part[2]Find $S_{200}$, the sum of the first 200 terms of the sequence.
\end{parts}
\begin{tikzpicture}
\draw (0,0) -- (17.5,0) -- (17.5,19) -- (0,19) -- (0,0);
\draw(17.5,4) -- (10,4);
\draw(10,4) -- (10,0);
\node[text width=3cm] at (1.7,18.7) {Working:};
\node[text width=3cm] at (11.7,3.8) {Answers:};
\node[text width=7.1cm] at (13.8,3) {(a)\dotfill};
\node[text width=7.1cm] at (13.8,2) {(b)\dotfill};
\node[text width=7.1cm] at (13.8,1) {(c)\dotfill};
\end{tikzpicture}
\end{questions}
\end{document}

產量:

在此輸入影像描述

相關內容