논문을 쓰고 있는데 철자가 맞는 것 같아서 무엇이 문제인지 이해할 수 없습니다. 어쩌면 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에서
pdflatex가 아닌 latex로 실행하면 오류 없이 실행됩니다.