라텍스 제목 페이지에서 공동저자 앞에 내 이름을 표시합니다.

라텍스 제목 페이지에서 공동저자 앞에 내 이름을 표시합니다.

여기 대학원생이 논문 제출을 준비하고 있습니다. 나는 제출할 논문의 작업 중 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}

관련 정보