Overleaf LaTex 文件未找到错误

Overleaf LaTex 文件未找到错误

我在使用 Overleaf(在线 LaTeX)时遇到了问题。我试图添加一个如图所示的图形。它一直说找不到文件。但是,p=figure 实际上显示在 pdf 上,但标题出现了两次。某个地方出错了。它对我的其他图形都正常,但只有这个从网上下载的图形出现错误。我找不到图片的网址,所以无法使用其他方法。请问有人能帮我解决这个问题吗?提前谢谢。

\documentclass[12pt]{report}

\usepackage{graphics}
\usepackage{graphicx}
\begin{document}

\begin{figure}
    \centering
    \includegraphics{stars convection.png}
    \caption{Caption}
    \label{fig:my_label}
\end{figure}
\end{document}

答案1

在其中输入名称,"..."但不要包含文件扩展名。

我尝试了这个(当然,重命名并使用我的 .png,因为我没有你的)并且它有效:

\documentclass[12pt]{report}
\usepackage{graphicx}
\begin{document}
\begin{figure}
    \centering
    \includegraphics{"stars convection"}
    \caption{Caption}
    \label{fig:my_label}
\end{figure}
\end{document}

这是 Overleaf 上的结果

\includegraphics{"stars convection".png}有效:

\documentclass[12pt]{report}
\usepackage{graphicx}
\begin{document}
\begin{figure}
    \centering
    \includegraphics{"stars convection".png}
    \caption{Caption}
    \label{fig:my_label}
\end{figure}
\end{document}

这是 Overleaf 上的结果

并记住只加载graphicx,无需加载graphics

相关内容