編譯論文傳回非特定的「未使用的全域選項」錯誤

編譯論文傳回非特定的「未使用的全域選項」錯誤

我正在編譯我的論文,並且不斷返回相同的錯誤: 在此輸入影像描述

令人沮喪的是,在我發現的所有其他論壇帖子中,錯誤引用了特定的事物(例如:),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 引擎中的錯誤,或者可以作為功能請求提交。我認為.logShareLaTeX 引擎對的解釋LaTeX Warning假定 它將在其發佈於.log.但是,由於未使用的選項清單顯示在後續行中,因此它僅報告Unused global option(s)為警告。例如,請考慮以下範例中的警告及其顯示:

\documentclass[notused]{article}

\begin{document}

Lorem ipsum \ref{abc}.

\end{document}

在此輸入影像描述

LaTeX 警告:未使用的全域選項:
    [不曾用過]。


LaTeX 警告:第 1 頁的引用「abc」在輸入行 5 上未定義。


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

相關內容