未找到 Image.png

未找到 Image.png

我在乳胶中遇到一个错误:

Package pdftex.def Error: File `figures/bootstrap.png' not found: using draft

我将图像与.tex文件放在同一个文件夹中,我关闭并重新打开文件,但没有显示。我该如何修复?

\documentclass{article}

\usepackage{url}
\usepackage{array}
\usepackage[ruled,vlined]{algorithm2e}
\usepackage{amsmath}
\usepackage{fancyhdr}
\usepackage{float}
\usepackage{amssymb}
\usepackage[makeroom]{cancel}
\usepackage[figurename=Figura]{caption}
\usepackage{enumitem}
\usepackage{centernot}
\usepackage{listings,lstautogobble}
\usepackage{color}
\usepackage{graphicx}
\graphicspath{{C:/Users/crisf/Documents/resumenlibros/}}


\begin{document}
\section{2013 - An introduction to statistical learning - with applications in R}

\subsection{Capítulo 2.¿Qué es aprendizaje estadístico?}

\begin{figure}[t]
    \includegraphics[width=11cm]{figures/bootstrap.png}
    \centering
    \caption{Conjuntos de datos distintos mediante el muestreo repetido de observaciones del conjunto de datos original.}

\end{document}

图像

答案1

如果图像与文件位于同一文件中.tex,则不需要该\graphicspath命令。只需将其删除即可解决问题。仅当文件不位于与文件相同的目录中时才使用该命令.tex。其次,您的\includegraphics命令调用位于的图像figures/bootstrap.png。这意味着图像将位于项目文件夹内名为的文件夹中figures。它应该读取\includegraphics[width=11cm]{bootstrap.png}图像是否与文件位于同一文件夹中.tex,或者您可以保留命令原样并将图像移动到项目文件夹内名为的新文件夹figures

相关内容