如何在考试类别中包含具有宽度的图形?

如何在考试类别中包含具有宽度的图形?

我正在尝试编写一个包含图形作为问题一部分的考试。但是,我在使用\includegraphics带有 的标准命令时遇到了麻烦pdflatex。我无法在方括号中指定参数\includegraphics。如果我删除方括号(可选参数),则编译时不会出现问题。我尝试将其包装在命令中,\fullwidth{}但没有成功。

这是一个简单的例子:

\documentclass[addpoints,11pt]{exam}
\usepackage{graphics}
\begin{document}
\begin{questions}
\question[] True/False questions.
\begin{parts}
\part[2] True or False.\vspace*{1in}
An image:
\begin{figure}    
\includegraphics[width=\textwidth]{file-which-exists}  
\end{figure}
\end{parts}
\end{questions}

\end{document}`

答案1

你加载了错误的包:它不是图形, 但图形

无需使用figure环境:center或者flushleft也可以(但它们都不是必需的)。只需将图形对象视为一个大字符即可。

相关内容