我不太擅长 LaTeX,但我一直在用它写论文。刚刚写完,想把所有东西都格式化。每当我尝试将摘要段落放入表单\begin{abstract}
(写在这里)\end{abstract}
并点击播放时,整个摘要部分就会消失。我做错了什么?
\documentclass[12pt]{amsart}
\begin{document}
\begin{abstract}
(my abstract here)
\end{abstract}
\end{document}
答案1
该amsart
课程对摘要做了一些神秘的事情:它将摘要存储在一个框中,用于标题页。要让它出现,请发出魔法命令\maketitle
后摘要。
(然后它会抱怨缺少\title
...)
\documentclass[12pt]{amsart}
\begin{document}
\begin{abstract}
(my abstract here)
\end{abstract}
\maketitle
Some text
\end{document}
答案2
使用 amsart 你需要\maketitle
查看摘要:
\documentclass[12pt]{amsart}
\title{abc}
\author{author}
\begin{document}
\begin{abstract}
(my abstract here)
\end{abstract}
\maketitle
\end{document}