如何用 graphicx 插入图像?

如何用 graphicx 插入图像?

我正在尝试将图像插入到我的文件中,但我不知道该怎么做。我添加了

\usepackage{graphicx}

在我的序言中,当我将图像拖放到我的文件中(我正在使用 TeXStudio)时,出现以下代码:

\begin{figure}
\centering
\includegraphics[width=0.7\linewidth]{"My Pretty Image"}
\end{figure}

然而,这并不起作用。

我做错了什么?我该如何解决这个问题?

答案1

A complete answer for just reference.
\bigskip % Add an empty line
%These are optional parameters to finetune the placement of tables and figures, with the following meaning:
%
%h, here
%t, top
%b, bottom
%p, page of float
%e.g. \begin{figure}[!htb]
\begin{figure}[ht!]
\centering
\includegraphics[width=90mm]{imagename.png}
\caption{This is the caption}
\label{overflow}
\end{figure}

答案2

感谢@Ulrike Fischer 在评论中回答了这个问题:“不要在文件名中使用空格。并删除引号。”

因此正确的代码是:

\begin{figure}
\centering
\includegraphics[width=0.7\linewidth]{MyPrettyImage}
\end{figure}

相关内容