考试中的包装图

考试中的包装图

我尝试使用使文档wrapfigure中的图形浮动。如果我不使用,那么考试问题就不会环绕图形。当我使用 时(如下例所示),所有内容都会环绕,但如果(或包含 解决方案的较长形式)超过一页,那么排版就会超出底部。examminipageminipageminipageminipage\printanswers

我的简单问题是:在 中包含数字的正确方法是什么exam?我的示例questions块如下:

\documentclass{exam}
\usepackage{amsmath}
\usepackage{graphics}
\usepackage{wrapfig}
\begin{document}
\begin{questions}
\begin{minipage}{\linewidth}
\begin{wrapfigure}{r}{9cm}
\includegraphics[width=8cm]{./20x20grid-axes.png}
\end{wrapfigure}

\question Answer all parts below: 

\begin{parts}

\part[1] 1 + 1 = \answerline

\fullwidth{\begin{solution}\begin{align*} \boxed{ 2 } \end{align*}\end{solution}}

\part[1] 2 + 2 = \answerline

\fullwidth{\begin{solution}\begin{align*} \boxed{ 4 } \end{align*}\end{solution}}

\part[1] 3 + 3 = \answerline

\fullwidth{\begin{solution}\begin{align*} \boxed{ 6 } \end{align*}\end{solution}}

\end{parts}
\end{minipage}
\end{questions}
\end{document}

答案1

一种可能性是移动环境minipage内部parts,并在包裹了足够的材料后立即结束它,如下例所示:

\documentclass{exam}
\usepackage[demo]{graphicx}
\usepackage{wrapfig}
\usepackage{amsmath}

\begin{document}

\begin{questions}
\question Answer all parts below: 

\begin{parts}
\begin{minipage}{\linewidth} 
\begin{wrapfigure}{r}{9cm}
\hfill
\includegraphics[width=8cm]{./20x20grid-axes.png}
\end{wrapfigure}
\part[1] 1 + 1 = \answerline

\fullwidth{\begin{solution}\begin{align*} \boxed{ 2 } \end{align*}\end{solution}}

\part[1] 2 + 2 = \answerline

\fullwidth{\begin{solution}\begin{align*} \boxed{ 4 } \end{align*}\end{solution}}

\part[1] 3 + 3 = \answerline

\fullwidth{\begin{solution}\begin{align*} \boxed{ 4 } \end{align*}\end{solution}}
\end{minipage}

\part[1] 3 + 6 = \answerline

\fullwidth{\begin{solution}\begin{align*} \boxed{ 6 } \end{align*}\end{solution}}

\end{parts}
\end{questions}

\end{document}

在此处输入图片描述

选项demographicx用黑色矩形替换实际图形;不是在实际文档中使用该选项。

相关内容