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}

そして括弧の中に私は

\includeグラフィックス{{gd.jpg}}

今私が得たのは

パッケージ pdftex.def エラー: ファイル `gd.jpg' が見つかりません: ドラフト設定を使用しています。\includegraphics{{gd.jpg}}

私は試した

\includeグラフィックス{{gd.jpg}}

するとエラーが発生します

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

私はWindows 10でTex Studioを使用しています。

関連情報