Texmaker 找不到图片

Texmaker 找不到图片

我正在使用 texmaker 作为编辑器撰写我的硕士论文...我有一个多文件项目,其中一个主文件作为主文档,另一个文件用作输入。这是我的 MWE:

\documentclass{scrartcl}
  \usepackage[utf8]{inputenc}
  \usepackage{graphicx}

\begin{document}
  \input{body/part1}
\end{document}

在 part1.tex 文件中我使用包含图形来获取 PDF 图像:

\begin{figure}[h!]
\centering
\includegraphics[scale=1]{../images/RAM.pdf}
\caption{Availability diagram}
\end{figure}

但我一直收到以下错误:

! Package pdftex.def Error: File '../images/RAM.pdf' not found.

那么,我该怎么做才能解决它?

相关内容