시험에서 문제와 답안을 분리

시험에서 문제와 답안을 분리

저는 시험 패키지를 사용하고 있으며 문제와 답변 라인을 분리하여 모든 답변 라인이 각 페이지 하단에 함께 표시되도록 하고 싶습니다.

지금까지는 \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}

수확량:

여기에 이미지 설명을 입력하세요

관련 정보