在 Latex (overleaf) 中包含 .png 图像时出现问题:图片格式不正确

在 Latex (overleaf) 中包含 .png 图像时出现问题:图片格式不正确

我对 \includegraphics 命令有疑问。我以前用过它,也用过“.png”图片,到目前为止还没有遇到任何问题(虽然我对 Latex 还很陌生)。但是,我刚刚尝试将图片包含到我的文档中,结果如下所示(图片在大约一半处被截断,并且右对齐,这两者都不是预期的;此外它还显示了文件名的一部分):

在此处输入图片描述

这是我正在使用的代码。我也只尝试过 \includegraphics、\includegraphics[width=\textwidth] 等:

\begin{figure}
    \centering
    \includegraphics[scale=0.4]{Statistics II/Instrumentv.png}
    \caption{Caption}
    \label{fig:my_label}
\end{figure}

如果相关的话,这里是图前的代码:

\begin{enumerate}
    \item $D = \gamma_0 + \gamma_1 Z + v$
    \begin{enumerate}
        \item Regression of D on Z, "treatment assignment model"
    \end{enumerate}
    \item $\hat{D} = \gamma_0 + \gamma_1 Z$
    \item $Y = \beta_0 + \beta^{2SLS} \hat{D} + e$
    \begin{enumerate}
        \item 2SLS only retains variation of D which is caused by Z
    \end{enumerate}
\end{enumerate}

我已经在 Google 上搜索了相当多的内容,但还是无法找到问题的根源。在此先感谢您的帮助!

相关内容