为什么我无法缩放我的图像?

为什么我无法缩放我的图像?

我正在使用该graphics软件包,我可以毫无困难地将图形插入到文档中,除了它很大之外!

我正在使用以下命令:

\documentclass{article}

\usepackage{graphics}

  \begin{document}

  \begin{figure}[b]

  \centering

  \includegraphics{cinema}

  \caption{Fig. 1: Simple Past}
  \end{figure}

\end{document}

但是当我插入缩放选项时:[scale=0.75]等。它不起作用,我收到消息

 Runaway argument?
scale=0.75]{cinema} \caption {Fig. 1: Simple Past} \end {figure} 
! Paragraph ended before \Gin@iii was complete.
<to be read again> 
                   \par 

答案1

使用graphicx包而不是graphics,因为只有前者支持键值语法。对于graphics版​​本,需要使用

\scalebox{0.75}{\includegraphics{cinema}}

例如软件包:graphics 与 graphicx和详细的使用 LaTeX 进行图形处理的指南

相关内容