我有此模板来自 ASME 网站会议/期刊论文:
\documentclass[twocolumn,10pt]{asme2e}
\special{papersize=8.5in,11in}
\usepackage{lipsum}
\title{Title}
\author{xxxxxxxxxxxxxx\\
{\tensfb xxxxxxxxxxx} \\
{\tensfb xxxxxxxxx\thanks{Address all correspondence to this author.}}
\affiliation{
Lab\\
Email
}
}
\begin{document}
\maketitle
\begin{abstract}
{\it TBD.}
\end{abstract}
\section{INTRODUCTION}
\lipsum[2-4]
\bibliographystyle{asmems4}
\bibliography{asme2e}
\end{document}
这将生成以下文档:
但是我希望作者、标题和摘要成为第一页左栏的一部分,如下所示:
有人能指出如何做到这一点吗?
答案1
这是一个非常基本的模板,可以复制您的要求:
\documentclass[twocolumn,10pt]{article}
\usepackage{mathptmx,lipsum}
\begin{document}
\begingroup
\setlength{\parindent}{0pt}% Remove paragraph indent
\setlength{\tabcolsep}{0pt}% Remove tabular column separation
\sffamily
% Title
{\LARGE\bfseries This is the title}
\hrulefill
\bigskip
\begin{tabular}{ l }
\bfseries Random Randofsky \\
\slshape Institute A \\
\slshape Country \\
\slshape email \\[\medskipamount]
\bfseries Random Randofsky \\
\slshape Institute B \\
\slshape Country \\
\slshape email
\end{tabular}
\endgroup
\bigskip
{\itshape \lipsum[1]}
\section{Introduction}
\lipsum[2-5]
\end{document}