我想把四幅图放在一页里。我尝试使用\clearpage
,\afterpage{\clearpage}
和afterpage
包,正如所建议的那样,在许多其他情况下都成功了。我也尝试过缩小图像,使用h
,H
等p
和figure
命令。但在我的例子中,没有一个起作用。
请帮我把这四张图片放到一个页面上。我目前的代码是:
\documentclass[addpoints,11pt]{exam}
\usepackage{graphicx} %to display graphics!
\usepackage{afterpage}
\firstpagefootrule
\begin{document}
\begin{questions}
\question[] True/False questions.
\label{label:a}
\begin{parts}
\part[2] True or False.
An image:
\begin{figure}[h]
\centering
\includegraphics[scale=0.5]{test}
\caption{Figure of Q.\ref{label:a}}
\label{label:q1}
\end{figure}
\end{parts}
\question[] True/False questions.
\begin{parts}
\part[2] True or False.
An image:
\begin{figure}[h]
\includegraphics[scale=0.5]{test}
\caption{Figure of Q.2}
\label{label:q2}
\end{figure}
\end{parts}
\question[] True/False questions.
\begin{parts}
\part[2] True or False.
An image:
\begin{figure}[h]
\includegraphics[scale=0.5]{test}
\caption{Figure of Q.3}
\label{label:q3}
\end{figure}
\end{parts}
\question[] True/False questions.
\begin{parts}
\part[2] True or False.
An image:
\begin{figure}[h]
\includegraphics[scale=0.5]{test}
\caption{Figure of Q.4}
\label{label:q4}
\end{figure}
\end{parts}
\end{questions}
\end{document}
我无法上传图片test.jpg
(尺寸为 168x126) 以及我通过运行上述代码创建的 pdf。很抱歉无法上传我得到的输出。
答案1
每页默认的最大浮动数量为 3。在本例中,您希望图像出现在精确的位置,因此不要使用浮动环境figure
;相反,您可以使用minipage
s 并\captionof
从capt-of
或者caption
获取字幕的包:
\documentclass[addpoints,11pt]{exam}
\usepackage[demo]{graphicx} %to display graphics!
\usepackage{afterpage}
\usepackage{caption}
\firstpagefootrule
\begin{document}
\begin{questions}
\question[] True/False questions.
\label{label:a}
\begin{parts}
\part[2] True or False.
An image:
\begin{minipage}[t]{\linewidth}
\centering
\includegraphics[scale=0.5]{test}
\captionof{figure}{Figure of Q.\ref{label:a}}
\label{label:q1}
\end{minipage}
\end{parts}
\question[] True/False questions.
\begin{parts}
\part[2] True or False.
An image:
\begin{minipage}[t]{\linewidth}
\centering
\includegraphics[scale=0.5]{test}
\captionof{figure}{Figure of Q.2}
\label{label:q2}
\end{minipage}
\end{parts}
\question[] True/False questions.
\begin{parts}
\part[2] True or False.
An image:
\begin{minipage}[t]{\linewidth}
\centering
\includegraphics[scale=0.5]{test}
\captionof{figure}{Figure of Q.3}
\label{label:q3}
\end{minipage}
\end{parts}
\question[] True/False questions.
\begin{parts}
\part[2] True or False.
An image:
\begin{minipage}[t]{\linewidth}
\centering
\includegraphics[scale=0.5]{test}
\captionof{figure}{Figure of Q.4}
\label{label:q4}
\end{minipage}
\end{parts}
\end{questions}
\end{document}
选项demo
只是graphicx
用黑色矩形替换实际图形;不是在实际文档中使用该选项。