如何在左栏中对齐标题和作者

如何在左栏中对齐标题和作者

在给定的双列模板中,我应该在左列中写上标题和作者(而不是在两列的中心)。

使用来自其他问答的一段 latex 代码,我能够将标题和作者对齐在左列,但它也产生了以下不受欢迎的瑕疵: - 作者行末尾有 3 个脚印(为什么只有两个作者却有 3 个脚印?为什么每个脚印不显示在每个作者姓名的末尾,而是显示在该行的末尾)? - 左列底部的每个脚注都已编号(1,2,3)。我不希望它被编号,因此,相应的脚注编号不应显示在作者行中。 - 仅仅是由于标题行的长度,作者行就写在新行中。如果标题行较短,作者行将从其旁边开始。我怎样才能强制为作者行创建一个新行?

这是一个最小的工作示例:

\documentclass[journal,twoside,shortpaper,9pt]{IEEEtran}  % IEEE class template


\usepackage{eqparbox}
\newcolumntype{L}{>{\raggedright\arraybackslash}p}
\newcolumntype{C}{>{\centering\arraybackslash}m}

%%%%%%%%%%%%%%% a block of code that I found  %%%%%%%%%%%%%%
\def\argmin{\mathop{\rm arg\,min\,}}

\thispagestyle{empty}
\makeatletter
\renewcommand{\maketitle}{\bgroup\setlength{\parindent}{0pt}
\begin{flushleft}
  \textbf{\@title}
  \@author
  \@thanks
\end{flushleft}\egroup
}
\makeatother
%%%%%%%%%%%% end of code I found elsewhere %%%%%%%%%%%%%%%%%%%%%%%

\begin{document}
\title{Some Title}
\author{Author~1\IEEEmembership{} and Author~2% <-this % stops a space
\thanks{Manuscript received...}%
\thanks{Author~1 is with...}% <-this % stops a space
\thanks{Author~2 is with...}}

\maketitle 
\begin{abstract}
    %\boldmath
Abstract text...
\end{abstract}
\begin{IEEEkeywords}
    some keywords
\end{IEEEkeywords}

\IEEEpeerreviewmaketitle

\section{Introduction}
Intro text...

\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%55

现在,您能否提供一段代码,以便 - 删除脚印 - 在标题下方的新行中打印作者姓名

谢谢!

答案1

类似这样?或者您根本不想要脚注标记?

\documentclass[journal,twoside,shortpaper,9pt]{IEEEtran}  % IEEE class template


\usepackage{eqparbox}
\newcolumntype{L}{>{\raggedright\arraybackslash}p}
\newcolumntype{C}{>{\centering\arraybackslash}m}

%%%%%%%%%%%%%%% a block of code that I found  %%%%%%%%%%%%%%
\def\argmin{\mathop{\rm arg\,min\,}}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}

\begin{document}
\begin{center}
{\bfseries\large Some Title}\footnote{Manuscript received...}\\
{\large Author~1\IEEEmembership{}\footnote{Author~1 is with...} and Author~2\footnote{Author~2 is with...}}% <-this % stops a space
\end{center}




\begin{abstract}
    %\boldmath
Abstract text...
\end{abstract}
\begin{IEEEkeywords}
    some keywords
\end{IEEEkeywords}

\IEEEpeerreviewmaketitle

\section{Introduction}
Intro text...

\end{document}

相关内容