在乳胶标题页上将我的名字放在合著者前面

在乳胶标题页上将我的名字放在合著者前面

我是一名研究生,准备提交一篇论文。我提交的论文已经完成了 92% 的工作,但我有三位(资深)合著者。我想把我的名字放在最上面,把他们的名字放在我的下面。现在,它把所有的名字都排成一行,最后一位作者在最下面:

\documentclass[11pt]{article}
\usepackage{graphicx}
\usepackage[margin=1in]{geometry}
\usepackage{amsmath,amssymb, amsfonts, amsthm, amstext, setspace, color, geometry, enumitem, hyperref, versions, tikz, cite, tabularx,tabulary, subfig, lscape, parskip}
\usepackage{lineno}
    \addtolength{\textheight}{.125in}
\usepackage{pslatex}
%\usepackage[T1]{fontenc}
%\usepackage{mathptmx}
\usepackage{draftwatermark}

%\usepackage{setspace}\onehalfspace
\newcommand{\E}{\mathbb{E}}     %Expectation operator
\title{My excellent paper about Science}
\author{Lead Author\\Dept\\ School \and Co-Author1\\Dept\\ School \and Co-Author2\\Dept\\ School \and Co-Author3\\Dept\\ School}
\date{This version: April 9, 2013}
\begin{document}

\maketitle
\end{document}

我该如何改变这种状况,才能让自己处于领先地位?

答案1

article类别的作者格式非常有限(大多数期刊类别对此进行了重新定义),但是无需重新定义大量内部内容,只需让自己变得宽泛:

在此处输入图片描述

\documentclass[11pt]{article}
\usepackage{graphicx}
\usepackage[margin=1in]{geometry}
\usepackage{amsmath,amssymb, amsfonts, amsthm, amstext, setspace, color, geometry, enumitem, hyperref, versions, tikz, cite, tabularx,tabulary, subfig, lscape, parskip}
\usepackage{lineno}
    \addtolength{\textheight}{.125in}
\usepackage{pslatex}
%\usepackage[T1]{fontenc}
%\usepackage{mathptmx}
\usepackage{draftwatermark}

%\usepackage{setspace}\onehalfspace
\newcommand{\E}{\mathbb{E}}     %Expectation operator
\title{My excellent paper about Science}
\author{\makebox[.9\textwidth]{Lead Author}\\Dept\\ School \and Co-Author1\\Dept\\ School \and Co-Author2\\Dept\\ School \and Co-Author3\\Dept\\ School}
\date{This version: April 9, 2013}
\begin{document}

\maketitle
\end{document}

相关内容