我使用 elsarticle 文档类来格式化我的论文。但是,我的标题和作者位于同一列。我的代码如下,
\documentclass[a4paper, 10pt, twocolumn, frontmatter]{elsarticle}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{balance}
\usepackage{caption}
\usepackage{multirow}
\usepackage{array}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
\begin{frontmatter}
\title{Title}
\author{Author}
\begin{abstract}
abstract
\end{abstract}
\begin{keyword}
Keyword1 \sep Keyword2
\end{keyword}
\end{frontmatter}
\section{Section1}
\bibliographystyle{elsarticle-num}
\bibliography{paper.bib}
\end{document}