我正在使用 TEX 编辑器并编写了以下代码:
\documentclass[10 pt,a4paper,twoside,reqno]{amsart}
\usepackage{amsfonts,amssymb,amscd,amsmath,enumerate,verbatim,calc}
\renewcommand{\baselinestretch}{1.2}
\textwidth = 12.5 cm
\textheight = 20 cm
\topmargin = 0.5 cm
\oddsidemargin = 1 cm
\evensidemargin = 1 cm
\pagestyle{plain}
\begin{document}
\title{Some Title}
\author{My Name}
\date{July 25, 2015}
\maketitle
\abstract{Some text....
......................}
\section{Introduction}
Some text.....
.............
\end{document}
当我单击“快速构建”时,出现以下错误!您不能在内部垂直模式下使用“\end”。在第 27 行(包含 \end{document} 的行)。请解释为什么会出现此错误以及我应该如何修复它。
答案1
abstract
文档的描述应amsart
在以下环境中给出:
\begin{abstract}
...
\end{abstract}
鉴于\abstract
,TeX 正在收集一个框,在这种情况下您无法结束文档的运行。由于没有,\end{abstract}
您永远无法正确关闭该框。
答案2
如果你不小心删除了或者忘记关闭花括号,也会出现同样的错误
}
例如在这个例子中
\begin{table}
…
\label{This is a caption after which you forgot to close the bracket, exactly here -->
\end{table}