尽管我在序言中声明了 \usepackage{graphicx},并将 graphicx.sty 附加到同一文件夹中,但仍然无法包含 .jpg 和 .png

尽管我在序言中声明了 \usepackage{graphicx},并将 graphicx.sty 附加到同一文件夹中,但仍然无法包含 .jpg 和 .png

我正在 Vim 中用一个大型 .tex 文件撰写论文。我有 .jpg 和 .png 高质量原生图像,转换为 .eps 后质量非常低。从视觉上看,质量较低。因此,我想直接包含 jpg 和 png。

在序言中我宣告:

    \usepackage{graphicx} 

我还有graphicx.sty同一文件夹中。

当我遵守时,出现此错误:

在此处输入图片描述

这是直接下载图像的链接,以便预先检查可能的解决方案是否有效:

https://www.mediafire.com/?71cl62619ty6c9r

我的序言是这样的:

\documentclass[12pt,a4paper,twoside,openany]{report}
\usepackage[left=2.5cm,top=2.5cm,right=2.5cm,bottom=2.5cm]{geometry}
\parindent 1 true cm
\usepackage{graphicx}       
\usepackage{eufrak}
\usepackage[spanish]{babel}
\usepackage[latin1]{inputenc}  
\usepackage[T1]{fontenc}
\usepackage{times}   
\usepackage{amsmath}
\usepackage{multirow}
\usepackage{float}
\usepackage{color}
\usepackage[longnamesfirst,super]{natbib}
\setcitestyle{square}
\usepackage{fancyhdr}   %llama al paquete para definición de estilo de pagina
\pagestyle{fancy}       %Idem                                 
\renewcommand{\chaptermark}[1]{\markboth{\thechapter .\ #1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection .\ #1}{}}
\lhead{\nouppercase}
\rhead{\nouppercase}
\fancyhead[LE]{{\sf \leftmark}}
\fancyhead[RE]{}
\fancyhead[RO]{{\sf \rightmark}}
\fancyhead[LO]{}
\fancyfoot[LE,RO]{\thepage}
\fancyfoot[CE,CO]{} 
\renewcommand{\headrulewidth}{0.0pt}                               
\renewcommand{\baselinestretch}{1.25}
\usepackage{adjustbox}
\usepackage{enumerate}  % Para poder poner un enumerar en I.
\usepackage{courier}
\usepackage[version=3]{mhchem}
\usepackage{rotating}
\usepackage[percent]{overpic} 
\begin{document}

以下是引入图像的代码:

\begin{figure}
\centering

\includegraphics{image.jpg}

\label{image}

\end{figure}

如果有人能帮助我,使用我的序言和介绍图像的代码对上面提供的图像进行测试,我将不胜感激。(我正在用 Vim 编写论文 .tex 文件)。

相关内容