Texmaker 中未找到图像文件

Texmaker 中未找到图像文件

在 texmaker 中我无法包含图像,在编译 quickbuild PDF 时出现错误:

!pdfTeX 错误:pdflatex (文件 ./coretip.jpg):读取 JPEG 图像失败 (未找到 JPEG 标头)

在包含图像之前,快速构建正在运行(通过关闭并打开 texmaker 进行编译)。我正在运行的代码保存在与图像文件相同的目录中。

我的代码:

\documentclass{article}
\graphicspath{{"C:\Users\IWQ\Documents\test"}}
\begin{document}
\includegraphics[scale=1]{{coretip.jpg}}
\end{document}

我已尝试过:

\includegraphics[scale=1]{{"coretip.jpg"}}
\includegraphics[scale=1]{{.\coretip.jpg}}
\includegraphics[scale=1]{"coretip.jpg"}
\includegraphics[scale=1]{{coretip}}

这些变化的组合,

\graphicspath{{C:\Users\IWQ\Documents\test}}
\graphicspath{"C:\Users\IWQ\Documents\test"}

以及这些变化的组合。还尝试过省略 \graphicspath。

我曾经尝试将文件目录放在MikTex的根目录中,也曾经尝试将文件目录放在configure texmaker窗口的PdfLaTex中。

pdflatex -synctex=1 -interaction=nonstopmode %.tex

pdflatex “C:\Users\IWQ\Documents\test”-synctex=1-interaction=nonstopmode %.tex

我尝试过的方法都不起作用,而且我也没有找到其他涵盖其他方法的答案。我习惯使用 overleaf,但是我目前的公司不允许在线工作。请帮助我,我浪费了几个小时让 texmaker 工作,这真的是违反直觉的。

先感谢您。

相关内容