尽管编码正确,但 Latex 编译中没有 pdf

尽管编码正确,但 Latex 编译中没有 pdf

编辑2:文件下载链接tex

http://www.mediafire.com/download/a2aaczrqzobv1q2/send.zip

我有一个 .tex 文件,其序言如下:

编辑:

\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[british,spanish,es-tabla]{babel}
\usepackage[latin1]{inputenc}  
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{graphicx,epsfig}
\usepackage{multirow}
\usepackage{float}
\usepackage{color}
\usepackage[longnamesfirst]{natbib} 
\setcitestyle{square} 
\usepackage{fancyhdr}   
\pagestyle{fancy}                                     
\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}
\usepackage{courier}
\usepackage{caption,setspace}
\usepackage[version=3]{mhchem}
\usepackage{rotating}
\usepackage{array,booktabs}
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}}
\usepackage{enumitem}
\captionsetup{font={footnotesize,sf,stretch=0.80},labelfont=bf}
\usepackage{subcaption}
\usepackage[toc,page]{appendix}
\begin{document} 

当我.tex使用 Texmaker(程序从以下位置下载:http://www.xm1math.net/texmaker/texmaker_ubuntu_12.04_4.4.1_amd64.deb

我收到此错误:

在此处输入图片描述

我点击OK.tex文件打开。Options > Congigure Texmaker > Quick Build我在下面选择 Latex 选项:

在此处输入图片描述

我编译并收到此错误:

在此处输入图片描述

.tex当我制作时,我成功编译了这个确切的文件: bash make_latex.sh。此make_latex.sh文件与 Texmaker 选项相同:

#!/bin/bash
\rm *.blg *.bbl *.dvi *.aux *.log
latex dd
bibtex dd
latex dd
latex dd
dvips dd.dvi
ps2pdf dd.ps
evince dd.pdf

我想使用 Texmaker 进行编译。如果您能告诉我如何解决这个问题,我将不胜感激。

我怎样才能成功生成pdf文件?

相关内容