编译时显示 Error: Missing \begin{document}
但源代码里是有输入\begin{document},请问是什么原因
提问于:
浏览数:
3391
2 回答
0
提供MWE
0
一般情况是在导言区出现了排版内容。比如:
```tex
\documentclass{article}
\title{My First article}
\author{Somebody}
hello, world!
\begin{document}
\maketitle
\end{document}
```
像这种情况就会报错,`Missing \begin{document}`
有时候这个错误是由于编译因特殊原因中断,`*.aux` 内容没有写完整,再次编译时,客观上也形成了在导言区输入排版内容的情况,这时候把辅助文件清理干净,重新编译一遍可能就好了。
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。