出现了一个非常奇怪的错误,它破坏了编译,而我一直在修复它。
在我的台式机上编译正常的文件在笔记本电脑上会出错。下面是 mwe。首先,使用 revtex4,编译时没有错误:
\documentclass[aps]{revtex4}
\begin{document}
\title{Title}
\author{Myname}
\begin{abstract}
This is my abstract
\end{abstract}
\maketitle
This is my document
\end{document}
但如果我切换到 revtex4-2:
\documentclass[aps]{revtex4-2}
\begin{document}
\title{Title}
\author{Myname}
\begin{abstract}
This is my abstract
\end{abstract}
\maketitle
This is my document
\end{document}
我得到了错误
LaTeX Error: Missing \begin{document}.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.3 \begin{document}
Latex 肯定知道样式文件(日志文件以这样的语句开头)。我重新安装了 Mactex。没有变化。我还尝试编译样式文件目录中的 revtex4-2 示例。
感谢这里的任何见解...