答案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}