Overleaf:未定义控制序列 a \begin{document}

Overleaf:未定义控制序列 a \begin{document}

出现此问题的原因是我在 Overleaf 上使用“minted”包。没有它,问题就消失了(但我需要这个包)。

到目前为止,我已尝试以下方法,但似乎无法解决问题:

  • 将 [cache=false] 添加到 usepackage 行
  • 使用不同的编译器
  • 更改输入文件的语言
  • 添加这两行,正如背面文档所建议的那样
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}

这是确切的错误信息

\set@color ->\special {color push \current@color 
                                                 }\aftergroup \reset@color 
l.24 \begin{document}
                     
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

与问题相关的是,文件仍然编译并且看起来像预期的那样。虽然没有任何错误会更好。

最低限度可重现的例子:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{minted}
\begin{document}
\maketitle
\section{Introduction}
\end{document}

您可以将其粘贴到背面文档中。

相关内容