为什么在这个例子中摘要在标题之前?以及如何强制执行正确的行为(标题、作者、所属机构、摘要,例如elsarticle
?)
\documentclass[a4paper,12pt]{article}
\usepackage{authblk}
\providecommand{\keywords}[1]{\textbf{\textit{Keywords:\ }} #1}
\begin{document}
\title{Absolute nothingness}
\author[1]{Someone}
\author[1]{Someone else}
\affil[1]{Some university}
\begin{abstract}
We found absolutely nothing of interest.
\end{abstract}
\keywords{no keywords, really}
\maketitle
big piece of nothing here
\end{document}
答案1
在article
类中,\author
和\title
是保存其参数并且不排版任何内容的命令,排版由完成\maketitle
,但是abstract
是常规的排版环境,如quote
或center
只是用标题排版其内容,因此您需要将其放在之后\maketitle
。