
私は 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}