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 할당\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를 사용하고 있습니다.

관련 정보