在 Latex 中运行论文代码时出错

在 Latex 中运行论文代码时出错

我正在使用 Winedt Editor 撰写论文。运行 tex 文件时出现以下错误。

在此处输入图片描述

这是什么意思?我无法得到它。另外,我有 8 个主要章节。所以我是否在以下 tex 行中添加一个章节:

\graphicspath{{HeadTail/},{Chapter1/},{Chapter2/},{Chapter3/},{Chapter4/},{Chapter5/},{Chapter6/},{Chapter7/}}.

又一个疑问。

对于所有章节,我都添加了用于图形的 pdf 文件,但是在运行代码以在第八章中添加图形时,显示未找到 .pdf 或 .jpg 文件,尽管我已将文件保存在同一文件夹位置。

请帮忙。非常感谢您的帮助。

我附上了论文的完整代码(主要代码)

\documentclass[12pt,twoside,openright]{book}
\usepackage[pdftex]{graphicx}
\usepackage{graphicx}

\usepackage[a4paper, tmargin=3.5cm, bmargin=2.5cm, lmargin=3.75cm, rmargin=2.5cm, twoside]{geometry}
\usepackage{latexsym,amsmath,amssymb,amsfonts}
\usepackage{mathtools}                   % AMS Math
\usepackage{rotating}                    % Sideways of figures & tables
\usepackage{natbib}                      % Cross-reference package (Natural BiB)
\usepackage{amsthm}                                          % Put References at the end of each chapter
\usepackage{enumerate}                                         % Do not put 'sectionbib' option here.
                                     % Sectionbib option in 'natbib' will do.
\usepackage{fancyhdr}                    % Fancy Header and Footer
\usepackage{setspace}
\usepackage{losymbol}
%\usepackage{pifont}
\usepackage{times}
%\usepackage{acronym}
\usepackage{lineno}
\usepackage{datetime}
\usepackage[english]{babel}
\doublespace                             % Line spacing
\usepackage{tocloft}
\usepackage{appendix}
\renewcommand{\cftchappresnum}{Chapter}
\renewcommand{\cftchapaftersnum}{:}
\renewcommand{\cftsecpresnum}{\hspace*{1.8cm}}
\renewcommand{\cftchapnumwidth}{6.2em}
\renewcommand{\cftsecnumwidth}{7em}
\renewcommand{\cftsubsecpresnum}{\hspace*{1.8cm}}
\renewcommand{\cftsubsecnumwidth}{7.5em}
\renewcommand{\cftchapleader}{\cftdotfill{\cftsecdotsep}}
\graphicspath{{HeadTail/},{Chapter1/},{Chapter2/},{Chapter3/},{Chapter4/}, 
{Chapter5/},{Chapter6/},{Chapter7/}}

相关内容