编译论文返回非特定的“未使用的全局选项”错误

编译论文返回非特定的“未使用的全局选项”错误

我正在编写我的论文,并且不断返回相同的错误: 在此处输入图片描述

这很令人沮丧,因为在我发现的所有其他论坛帖子中,错误都指向一个具体的东西(例如:),Unused global option(s) [english]所以可以找到出错的代码部分。由于我的错误只是说明,main.tex因此很难找到问题所在。

编辑:添加MWE:

%------METADATA-------
\def\myauthor{Author} % Author
\def\mytitle{Title} % title

%% ----------------------------Setting up the Preamble---------------------------

\documentclass[12pt,oneside,onehalfspacing]{report}  %[font size, same margins 
on both sides, line spacing] - ***change to twoside if getting bound!!!***
\usepackage[utf8]{inputenc}  %input coding method
\usepackage[T1]{fontenc}  %makes copy and pasteable
\usepackage{graphicx}   %allows input of images
\usepackage{float}   %positioning of figures
\graphicspath{ {figures/} }  %where the images are kept
\usepackage[raggedright]{titlesec}  %stops titles using too much space

\pagenumbering{roman} %set front matter page numbering to roman

%%----------PAGE LAYOUT--------
\usepackage[a4paper,left=40mm,right=20mm,top=20mm,bottom=20mm,includehead,includefoot]{geometry} 

\usepackage{fancyhdr}
\pagestyle{fancy} %adds page headers
\setlength{\headwidth}{150mm}

\fancyhead{}  %clears header format
\fancyhead[L]{\leftmark} %adds chapter title in left position
\fancyhead[R]{\myauthor}  %adds author in right position
\fancyfoot{}
\fancyfoot[R]{\textbf{\thepage}} %bold page number


\renewcommand{\headrulewidth}{0.4pt} %alters head/foot ruler line width
\renewcommand{\footrulewidth}{0.4pt}

\setlength{\headheight}{15pt} % header height

\setlength{\parskip}{1em} %adds return between paragraphs

%%------Font-------
\usepackage{lmodern}
\renewcommand*\familydefault{\sfdefault} %% Only if the base font of the 
document is to be sans serif
\usepackage[T1]{fontenc}
%%---------------------------------

\title{
    {\mytitle}\\
    \vspace{15mm}
%   {\large UoD}
    \vspace{10mm}
{\includegraphics[width=8cm]{dundee_logo.png}}\\
\vspace{5mm}
}
\author{\myauthor}
\date{2017}

%------------------BIBTEX------------------------
\usepackage[style=nature,citestyle=numeric-comp,sorting=none]{biblatex}
\addbibresource{library.bib}

\AtEveryBibitem{\clearfield{isbn}}    % clears isbn
\AtEveryBibitem{\clearfield{url}}    % clears url
\AtEveryBibitem{\clearfield{doi}}    % clears doi
\AtEveryBibitem{\clearfield{issn}}    % clears issn
\usepackage{hyperref} %treats in text references as hyperlinks

%% --------------------------------End of Preamble--------------------------------------
\begin{document}
Here is my document
\end{document}

抱歉,我的 LaTex 写得很糟糕,这是我第一次尝试使用它!

答案1

以下是复制以下行为的最小示例分享LaTeX

\documentclass[notused]{article}

\begin{document}

Lorem ipsum.

\end{document}

为了识别“未使用的全局选项”,您必须单击查看原始日志:

在此处输入图片描述

然后您可以滚动日志(朝底部)并找到实际的警告:

LaTeX 警告:未使用的全局选项:
    [不曾用过]。

这可能是 ShareLaTeX 引擎的一个错误,或者可以作为功能请求提交.log。我认为ShareLaTeX 引擎对的解释假设LaTeX Warning将在 中发布的行上可用.log。但是,由于未使用的选项列表显示在后续行中,因此它仅报告Unused global option(s)为警告。例如,请考虑以下示例中的警告及其显示:

\documentclass[notused]{article}

\begin{document}

Lorem ipsum \ref{abc}.

\end{document}

在此处输入图片描述

LaTeX 警告:未使用的全局选项:
    [不曾用过]。

...

LaTeX 警告:第 1 页上的引用“abc”在输入行 5 上未定义。

...

LaTeX 警告:存在未定义的引用。

相关内容