在 apa7 中编译“ \include”时出现问题

在 apa7 中编译“ \include”时出现问题

有人能帮我解决我的代码吗?一切都运行正常,直到 4 天前;它不再运行了。我提出了一个关于 的故障排除\include

这是我的代码:

\documentclass[table,a4paper,man,floatsintext]{apa7}

\usepackage[american]{babel}
\usepackage{amssymb,amsthm,mathtools}
\usepackage{graphicx,float}
\usepackage{booktabs,threeparttable,tabularx,multirow}
\usepackage{caption,subcaption}
\usepackage{algorithmicx,algpseudocode}
\usepackage[ruled]{algorithm}
\usepackage{csquotes}
\usepackage[backend=biber,style=apa]{biblatex}
\usepackage{tikz,nicematrix}
            \usetikzlibrary{calc}    
\usepackage{xcolor}

\newcolumntype{L}{>{\raggedright\arraybackslash}X >{$\displaystyle}l<{$}}
\newcolumntype{C}{>{\raggedright\arraybackslash}X >{$\displaystyle}c<{$}}
\setlength{\parindent}{0.5in}
\DeclarePairedDelimiter{\norm}{\lVert}{\rVert}
\def\ds{\displaystyle}
\DeclareMathOperator{\sig}{sigm}
\DeclareMathOperator{\cd}{CD}
\setcounter{secnumdepth}{77}
\setcounter{tocdepth}{77}
\newtheorem{rem}{Remark}[section]
\newtheorem{defi}{Definition}[section]


\def\gr#1{\text{\bf #1}}
\DeclareMathOperator{\rand}{rand}

\newcommand{\bfx}{{\bf x}}
\addbibresource{References1.bib}
\addbibresource{References2.bib}
\addbibresource{References3.bib}


\begin{document}

\include{titlepage}

\pagenumbering{roman}
\include{Abstract}
\addcontentsline{toc}{section}{Abstract}

\include{dedication}
\addcontentsline{toc}{section}{Dedication}

\include{acknowledge}
\addcontentsline{toc}{section}{Acknowledgements}


\begin{flushright}
``If everybody was insisted in how we lived and how our country worked,\\
 I think we'd be bringing a lot more light into the world''\\
\emph{Shonda Rhimes}
\end{flushright}

\newpage
\tableofcontents
\addcontentsline{toc}{section}{Contents}
\newpage
\listoftables
\addcontentsline{toc}{section}{List of Tables}
\newpage
\listoffigures
\addcontentsline{toc}{section}{List of Figures}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\pagenumbering{arabic}

\include{introduction}
\include{chap2}
\include{chap3}
\include{chap_amopso}
\include{chap_RBF}
\include{chap_vehicule}
\include{conclusion}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\printbibliography
\addcontentsline{toc}{section}{References}

\end{document} 

我试图了解问题出在哪里,但我找不到任何线索。这里是 pastebin 中的执行行在此处输入链接描述

相关内容