在乳膠扉頁上將我的名字放在我的合著者之前

在乳膠扉頁上將我的名字放在我的合著者之前

研究生在這裡,準備提交論文。我已經完成了我提交的論文的 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}

相關內容