\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}