我正在尝试为期刊创建 PDF,其中作者采用多列格式,但文档/文本的其余部分不是。我该如何让它工作?它会自动将文档的其余部分格式化为两列。我正在将其导出为 PDF,我正在使用 TeXworks。
\documentclass[10pt,twocolumn]{article}
\title{Article Title}
\author{
First Author\\
Department\\
school\\
email@edu
\and
Second Author\\
Department\\
school\\
email@edu
\and
Third Author\\
Department\\
school\\
email@edu
\and
Fourth Author\\
Department\\
school\\
email@edu
}
\date{\today}
\begin{document}
\maketitle
\begin{abstract}
This part should be in a single column.
\end{abstract}
\section{Introduction}
\ldots
\end{document}
答案1
无论选择哪种方式,文档的作者article
始终设置在多列中twocolumn
。twocolumn
从文档选项中删除将产生以下结果:
\documentclass[10pt]{article}
\usepackage{lipsum}
\title{Article Title}
\author{
First Author\\
Department\\
school\\
email@edu
\and
Second Author\\
Department\\
school\\
email@edu
\and
Third Author\\
Department\\
school\\
email@edu
\and
Fourth Author\\
Department\\
school\\
email@edu\\
\and
Fifth Author\\
Department\\
school\\
email@edu
\and
Sixth Author\\
Department\\
school\\
email@edu
\and
Seventh Author\\
Department\\
school\\
email@edu
\and
Eighth Author\\
Department\\
school\\
email@edu
}
\date{\today}
\begin{document}
\maketitle
\begin{abstract}
CFD \ldots
\end{abstract}
\section{Introduction}
\lipsum
\section{future research exc}\label{previous work}
\end{document}
答案2
(备注——随着原帖主人问题的要点变得清晰,这个答案与我最初发布的答案进行了彻底的编辑。第一段的内容与杰克的回答完全相同。)
只需从指令中删除该twocolumn
选项\documentclass
,文档的其余部分就会以单列格式排版。使用您提供的代码,author
块将自动以最节省空间的方式排版。
顺便说一句,除非论文的所有作者都有不同的隶属关系,否则您可能需要考虑使用该authblk
包来简化一些贡献者之间共享的机构隶属关系的引用。