在文章简介前插入一个部分

在文章简介前插入一个部分

我想在文章的摘要之后和引言之前添加一个“动机”部分。我试过了,但没有成功

\begin{Motivation}



\end{Motivation}

我知道这对于专业人士来说很奇怪,但是我使用了抽象的类比。

答案1

最简单的方法是

\documentclass{article}

\begin{document}

\title{A title}
\author{A. Uthor}
\date{July 38, 2016} % don't ask why

\maketitle

\begin{abstract}
This is the abstract.
\end{abstract}

\section*{Motivation}

We have several good reasons for writing this paper.
The main one is that ducks can fly.

\section{Introduction}

...

\end{document}

答案2

您可以简单地使用抽象环境两次,为每个抽象赋予不同的名称

\begin{document}

\renewcommand{\abstractname}{Motivation}
\begin{abstract}
    Some motivational text here
\end{abstract}

\renewcommand{\abstractname}{Abstract}
\begin{abstract}
    No form, no name, simple existence.
\end{abstract}

\end{document}

我以为你不想用一个简单的\section动机

编辑:

要拥有“无数字”部分,您只需使用\section*{Motivation}

相关内容