無法編譯 - 未定義的控制序列

無法編譯 - 未定義的控制序列

我正在寫論文,我不明白問題出在哪裡,因為拼字對我來說似乎是正確的。也許report文檔類別就是問題所在。我真的不明白。

\documentclass{report}
\title{Data sharing in the European Union: data spaces}
\author{xxxx}

\usepackage[utf8]{inputenc}
\PassOptionsToPackage{
        natbib=true,
        %style=authoryear-comp,
        style=apa,
        backend=biber,
        url=false,
        doi=false,
        isbn=false,
        eprint=false,
            }{biblatex}
\usepackage[backend=biber,bibencoding=utf8]{biblatex}
\addbibresource{/home/enrico/Università/uni_bib.bib}
\usepackage[bottom]{footmisc}
\usepackage{hyperref}
\usepackage[T1]{fontenc}
\usepackage{bookmark}
\usepackage{pstricks}
\usepackage{import} 
\usepackage{graphicx}
\graphicspath{{images/}}
\usepackage{xifthen}
\usepackage{setspace}
\onehalfspacing
\usepackage{pdfpages}
\usepackage{transparent}
\usepackage{blindtext}
\usepackage{geometry}
    \geometry{
        a4paper,
        total={170mm, 257 mm},
        left=20mm,
        top=20mm,
}
\usepackage[final]{microtype}
\usepackage{subfiles}

\begin{document}
\maketitle 
\tableofcontents
    \chapter{Introduction}


\printbibliography
\end{document}

這是錯誤:

Università/MAGISTRALE/Thesis/final_writing/masters_thesis.tex|42 error| Undefined control sequence.
Università/MAGISTRALE/Thesis/final_writing/masters_thesis.tex|42 warning| Package microtype Warning: Unable to apply patch `footnote' on input line 42.

第 42 行就是所在的位置\begin{document}

解決方案:刪除\usepackage{transparent}或 該\usepackage{pstricks}行,因為這些包似乎不能很好地協同工作(與pdflatex)。

答案1

您只顯示了錯誤訊息的片段,因此沒有顯示哪個命令未定義。

! Undefined control sequence.
\pgfutil@addpdfresource@extgs ...urce@extgs@plain 
                                                  {#1}
l.42 \begin{document}
                     
?

這並不是非常有用,但表明問題出在 pgf 後端程式碼中,這也解釋了警告

Non-PDF special ignored!
<special> header=pst-algparser.pro

來自 pstricks

使用 Latex 而不是 pdflatex 運行不會出現錯誤。

相關內容