无法编译-未定义的控制序列

无法编译-未定义的控制序列

我正在写论文,我不知道问题出在哪里,因为拼写对我来说似乎是正确的。也许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 运行时不会出现错误。

相关内容