在文章中对齐作者(更左侧)*重复*

在文章中对齐作者(更左侧)*重复*
\documentclass[a4,12pt,twocolumn]{article}
\usepackage{titling}
\usepackage{blindtext}
\usepackage{fancyhdr}
\fancyhf{} 
\renewcommand{\headrulewidth}{0pt} 
\rfoot{\thepage}
\pagestyle{fancy}
\setlength{\droptitle}{-10em}

\begin{document}
\title{\textbf{\Large{\noindent Charge Density and Charge Per Phase as Cofactors in Neural Injury Induced by Electrical Stimulation\vspace{-2ex}}}}
\date{}
\author{\normalsize{DOUGLAS B. McCREERY, WILLIAM F. AGNEW, TED G. H. YUEN, AND LEO BULLARA}}
\maketitle
\newpage
\end{document}

标题和作者应该位于中间,但只有标题的位置正确!我该怎么办?谢谢你的帮助!

答案1

\author\title这些命令只会收集文本然后\maketitle根据类或前导命令设置的规则进行格式化。

作者列表设置不正确,因为它被标记为单身的作者,所以\maketitle将其设置为一行。多个作者应该用 分隔\and。另外,没有a4选项,article应该是a4paper

在此处输入图片描述

\documentclass[a4paper,12pt,twocolumn]{article}
\usepackage{titling}
\usepackage{blindtext}
\usepackage{fancyhdr}
\fancyhf{} 
\renewcommand{\headrulewidth}{0pt} 
\rfoot{\thepage}
\pagestyle{fancy}
\setlength{\droptitle}{-10em}

\begin{document}
\title{Charge Density and Charge Per Phase as Cofactors in Neural Injury Induced by Electrical Stimulation}
\date{}
\author{DOUGLAS B. McCREERY\and
WILLIAM F. AGNEW\and
 TED G. H. YUEN\and
LEO BULLARA}
\maketitle
\newpage
\end{document}

相关内容