
我不太擅長 LaTeX,但我一直用它來寫我的論文。剛結束並嘗試正確格式化所有內容。每當我嘗試將我的摘要段落放入表單\begin{abstract}
(寫在這裡)\end{abstract}
並單擊播放時,整個摘要部分就會消失。我究竟做錯了什麼?
\documentclass[12pt]{amsart}
\begin{document}
\begin{abstract}
(my abstract here)
\end{abstract}
\end{document}
答案1
該類別amsart
對摘要做了一些神秘的事情:它將摘要儲存在一個框中以在標題頁中使用。要讓它出現,請發出 magic 命令\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}