我尝试使用使文档wrapfigure
中的图形浮动。如果我不使用,那么考试问题就不会环绕图形。当我使用 时(如下例所示),所有内容都会环绕,但如果(或包含 解决方案的较长形式)超过一页,那么排版就会超出底部。exam
minipage
minipage
minipage
minipage
\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}
选项demo
graphicx
用黑色矩形替换实际图形;不是在实际文档中使用该选项。