学术信息

学术信息

是否有任何包可以扩展文章类,以便格式化论文标题可以变得更容易和更清晰?特别是电子邮件、角色、大学名称……

我的意思是像下面这样的清晰的序言:

\documentclass{article} 

\title{Easy LaTeX}
\begin[columns=3]{authors}
   \author[[email protected], university=Amirkabir,city=Tehran,country=Iran]{B. Baxci }
   \author[[email protected],university=Amirkabir,department=IT and computer,city=Tehran,country=Iran]{A. Naseri }
   \author[[email protected],afeliation=Nano Research Center,city=Tehran,country=Iran]{F. Farhadi }
\end{authors}

\begin{document}
% all good stuff 
\end{document}

如果没有包,输出常见学术信息的最佳做法是什么。

答案1

爱思唯尔提供-class elsarticle,允许轻松输入作者元数据。但是,我不确定是否存在许可问题,因此请在网上发布此类文档之前进行检查。

电子邮件地址显示为第一页底部的脚注,因此未显示在当地的屏幕截图中。

第一个带脚注的选项

\documentclass[final,5p,times,twocolumn]{elsarticle}
\usepackage[english]{babel}
\usepackage{blindtext}

\journal{TeX.sx}

\begin{document}
\begin{frontmatter}

\title{Easy \LaTeX}

\author[ami]{B. Baxci\corref{cor1}}
\ead{[email protected]}

\author[ami]{A. Naseri}
\ead{[email protected]}

\author[nano]{F. Farhadi}
\ead{[email protected]}

\address[ami]{Amirkabir University, IT and Computer Department, Teheran, Iran}
\address[nano]{Nano Research Center, Teheran, Iran}

\cortext[cor1]{Corresponding author}

\begin{abstract}
    \blindtext 
\end{abstract}

\begin{keyword}
    key1 \sep key2 \sep key3
\end{keyword}

\end{frontmatter}

\Blindtext[2][3]
\end{document}

还有一种可能性,不过会占用更多一点的空间: 第二种选择

\documentclass[final,5p,times,twocolumn]{elsarticle}
\usepackage[english]{babel}
\usepackage{blindtext}

\journal{TeX.sx}

\begin{document}
\begin{frontmatter}

\title{Easy \LaTeX}

\author{B. Baxci\corref{cor1}}
\ead{[email protected]}
\address{Amirkabir University, IT and Computer Department, Teheran, Iran}

\author{A. Naseri\corref{cor2}}
\ead{[email protected]}
\address{Amirkabir University, IT and Computer Department, Teheran, Iran}

\author{F. Farhadi\corref{cor2}}
\ead{[email protected]}
\address{Nano Research Center, Teheran, Iran}

\cortext[cor1]{Corresponding author}

\begin{abstract}
    \blindtext 
\end{abstract}

\begin{keyword}
    key1 \sep key2 \sep key3
\end{keyword}

\end{frontmatter}

\Blindtext[2][3]
\end{document}

相关内容