服务器编译大文档时出错,ShareLatex

服务器编译大文档时出错,ShareLatex

我正在尝试在 ShareLatex 中编译包含多个章节的大型文档。每个章节都可以正确编译,只有少量(通常无法避免)错误,但当我尝试编译超过 2 个章节时,我收到以下错误:服务器错误,抱歉,出现问题,无法编译您的项目。请稍后重试。稍后重试无法解决问题。这也是草稿模式,因此图像不是问题。

编辑:包括 MWE

\documentclass[12pt, twoside]{report} 
\usepackage[utf8]{inputenc} 
\setlength{\parindent}{0pt} 
\usepackage{parskip}
\usepackage{setspace}
\usepackage{array}
\doublespacing
\usepackage[a4paper, left=40mm, top=25mm, right=20mm, bottom=25mm]{geometry}
\usepackage{graphicx} 
\graphicspath{{Images/}{../Images/}} 
\usepackage[outdir=./]{epstopdf}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{arydshln}
\renewcommand{\arraystretch}{1.5}
\usepackage{rotating}
\usepackage{makecell}
\usepackage[justification=justified]{caption}
\usepackage{comment}
\usepackage{fancyhdr} 
\pagestyle{fancy}
\fancyhead{}                                
\fancyhead[C]{Chapter \thechapter} 
\setlength{\headheight}{14.5pt}
\fancyfoot{}                                
\fancyfoot[RO,LE]{\thepage}  
\usepackage[version=4]{mhchem} %for equations
\usepackage{chemnum}
\usepackage{xparse}
\NewDocumentCommand{\cecount}{ O{#2} m }{\ce{#2} (\cmpd{#1})}
\usepackage{etoolbox,calc}
\makeatletter
\pretocmd{\@makechapterhead}{\setcounter{cmpdmain}{100*\thechapter-1}}{}{}
\makeatother
\usepackage[journal = angew]{chemstyle}
\cstsetup{radhyphen = false,radsuper = true,abbremph = true}
\usepackage{chemscheme}
\usepackage{siunitx}
\usepackage[backend = biber, style=chem-angew]{biblatex} 
\addbibresource{mendeley.bib}

\begin{document}
\chapter{Introduction}
   \input{Chapters/chapter1.tex} 
   \input{Chapters/chapter2.tex}
etc...

相关内容