Trennung von Frage- und Antwortzeile in der Prüfung

Trennung von Frage- und Antwortzeile in der Prüfung

Ich verwende das Prüfungspaket und möchte die Antwortzeile von der Frage trennen, sodass alle Antwortzeilen gemeinsam unten auf jeder Seite stehen.

Bisher funktioniert es mit \vfill„before“ \answerline, aber nicht, wenn die Frage aus mehr als einem Teil besteht.

Sehen Sie sich das Bild an, um zu sehen, was ich erreichen möchte.Bildbeschreibung hier eingeben

Antwort1

examIch konnte die Frage nicht allein mit den Klassenbefehlen beantworten . Aber tikzdie Verwendung ist ziemlich einfach.

Code:

\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}

Erträge:

Bildbeschreibung hier eingeben

verwandte Informationen