Overleaf 프로젝트가 방금 컴파일을 중지했습니다.

Overleaf 프로젝트가 방금 컴파일을 중지했습니다.

저는 지난 2월에 Overleaf를 사용하여 논문을 썼고 이제는 곧 글쓰기를 시작할 친구들을 위해 LaTeX 템플릿을 만들기 위해 돌아가고 싶었습니다.

문제: 프로젝트 zip을 다운로드하고 프로젝트를 다시 업로드한 후 프로젝트 컴파일이 중단되었습니다. 문서를 변경하지 않았습니다. 이전 논문 프로젝트는 여전히 잘 컴파일되지만 다시 업로드하면 다음 오류가 발생합니다.

NoPDF 오류

This compile didn’t produce a PDF. This can happen if: There is an
unrecoverable LaTeX error. If there are LaTeX errors shown below or in
the raw logs, please try to fix them and compile again. The document
environment contains no content. If it’s empty, please add some
content and compile again. This project contains a file called
output.pdf. If that file exists, please rename it and compile again.

Emergency stop


<*> docclass.tex
                
*** (job aborted, no legal \end found)

  Here is how much of TeX's memory you used:  18 strings out of 477678
409 string characters out of 5829488  299848 words of memory out of
5000000  18915 multiletter control sequences out of 15000+600000 
469259 words of font info for 28 fonts, out of 8000000 for 9000  1141
hyphenation exceptions out of 8191  13i,0n,12p,94b,10s stack positions
out of 10000i,1000n,20000p,200000b,200000s !  ==> Fatal error
occurred, no output PDF file produced!

일부 다른 스레드에서는 컴파일 오류가 발생한 위치를 찾기 위해 \end{document}를 문서 위쪽으로 이동하라고 제안했지만, start{document} 바로 뒤에 넣어도 여전히 동일한 오류가 발생합니다.

따라서 오류는 구성 파일 어딘가에 있을 수 있다고 가정합니다. Overleaf가 일부 버전을 변경했고 이제 캐시된 파일로 인해 이전 프로젝트가 계속 실행되는 동안 내 (상대적으로 오래된) 템플릿이 더 이상 지원되지 않을 수 있습니까?

저는 현재 헤매고 있습니다. 오류 메시지가 너무 이해하기 어렵고 불특정하기 때문에 도움이 정말 필요합니다.

참조하는 docclass.tex 파일은 다음과 같으며 유효해야 합니다.

\documentclass[
    11pt,
    DIV=10,
    ngerman,
    a4paper,
    oneside,
    titlepage,
    parskip=half,
    headings=normal,
    listof=totoc,
    bibliography=totoc,
    index=totoc,
    captions=tableheading,
    numbers=noenddot,
    final ]{scrreprt}

답변1

이러한 오류가 발생하고 문서의 다른 지점에서 컴파일 오류를 배제하기 위해 \end{document}를 이동할 때 올바른 기본 파일이 설정되었는지(메뉴 -> 기본) 확인하고 이전 버전도 시도해 보세요. 드롭다운에서 TexLive 버전을 선택하여 템플릿이 이전 버전에서 여전히 지원되는지 확인하세요!

관련 정보