如何将作者所属信息放在双栏页面的左下角

如何将作者所属信息放在双栏页面的左下角

请参阅下面的模板。隶属关系看起来像是集成到文本中的脚注(实际上,这实际上是期刊格式文档中的说法)。 在此处输入图片描述

答案1

以下在某种程度上复制了您展示的模板。它不是自动化的,但如果需要,可以做到。

在此处输入图片描述

\documentclass[10pt]{article}

\usepackage{geometry,sectsty,etoolbox}
\usepackage{newtxtext,newtxmath}
\geometry{
  margin = 1in,
  twocolumn
}

\sectionfont{\normalfont\large\scshape\centering}
\renewcommand{\thesection}{\Roman{section}}
\subsectionfont{\normalfont\normalsize\itshape}
\renewcommand{\thesubsection}{\Alph{subsection}}

\makeatletter
\renewcommand{\@seccntformat}[1]{\csname the#1\endcsname.\space}
\patchcmd{\@maketitle}% <cmd>
  {\vskip 1em{\large \@date}}% <search>
  {}% <replace>
  {}{}% <success><failure>
\makeatother

\renewenvironment{abstract}
  {\par\textbf{\itshape Abstract}---\ignorespaces}
  {\par\medskip}
\newenvironment{keywords}
  {\par\textbf{\itshape Keywords}---\ignorespaces}
  {\par\medskip}

\title{Preparation of Papers - Paper Title}
\author{%
  AuthorName Lastname%
  \rlap{\textsuperscript{1}},
  AuthorName Lastname%
  \rlap{\textsuperscript{2}},
  AuthorName Lastname%
  \rlap{\textsuperscript{3}}%
}

\usepackage{lipsum}

\begin{document}

\twocolumn[\maketitle]

\footnotetext[1]{AuthorName Lastname is with the National Institute of Standards and Technology,
  Boulder, CO 80305 USA (correspondence author's phone: XXX-XXX-XXXX; email: [email protected]}
\footnotetext[2]{AuthorName Lastname was with Rice University, Houston, TX 77005 USA.
  He is now with the Department of Physics, Colorado State University, Fort Collins,
  CO 80523 USA (email: [email protected])}
\footnotetext[3]{AuthorName Lastname is with the Electrical Engineering Department, University
  of Colorado, Boulder, CO 80309 USA, on leave from the National Research Institute
  for Metals, Tsukuba, Japan (email: [email protected])}

\begin{abstract}
  \lipsum*[2]
\end{abstract}

\begin{keywords}
  About four key words or phrases in alphabetical order, separated by commas.
\end{keywords}

\sloppy% Just for this example
\section{Introduction}
\lipsum[1]

\section{Procedure for Paper Submission}
\lipsum[2]
\subsection{Review Stage}
\lipsum[3]
\subsection{Figures}
\lipsum[4]
\subsection{Document Modification}
\lipsum[5]
\subsection{Copyright Form}
\lipsum[6]

\section{Math}
\lipsum[7]

\section{Units}
\lipsum[8]

\end{document}

相关内容