如何在 miktex 生成的文档中插入图像

如何在 miktex 生成的文档中插入图像

我正在做以下

\begin{figure}
    \includegraphics{gd.jpg}
    \caption{Amazon Guard Duty}
\end{figure}

在序言中,我提到了以下内容

\usepackage{graphicx}
\graphicspath{C:\Users\user1\user\Lab assignments\project\march2020\paper\EUSFLAT 2019 template\images}

路径“C:\Users\user1\user\Lab assignments\project\march2020\paper\EUSFLAT 2019 template\images”是我嵌入生成的 pdf 中的图像的文件夹路径。

但当我编译它时我得到

Undefined control sequence. \includegraphics{gd.jpg}

那么我上面犯了什么错误?

更新1
按照以下评论的建议,我将\文件路径更改为/ 新的路径如下

\documentclass{eusflat2019}
\title{\bf paper title}
\author{{\bf author1$^1$} , {\bf author1$^2$} , {\bf author1$^{3}$}\\
$^1$CSE  \\ $^2$CSE \\$^3$ CSE }
\usepackage{parskip}
\usepackage{indentfirst}
\usepackage{titlesec}
\usepackage{graphicx}
\usepackage{graphicx}
\graphicspath{C:/Users/User1/user/Lab assignments/project/march2020/paper/EUSFLAT 2019 template/images}

我在括号里做了

\includegraphics{{gd.jpg}}

现在我得到的是

包 pdftex.def 错误:未找到文件“gd.jpg”:使用草稿设置。\includegraphics{{gd.jpg}}

我试过

\includegraphics{{gd.jpg}}

然后我得到的错误是

Package pdftex.def Error: File `gd.jpg' not found: using draft setting. \includegraphics{gd.jpg}

我在 Windows 10 上使用 tex studio。

相关内容