Latex写作会议论文中多位作者、机构的排版

时间:2021-07-14 19:52:04

投稿会议论文时, 多作者多机构比较常见, 而且会议提供的模板中一般也有提供对多作者,多机构的支持。 比如IEEE trans, CVPR, ECCV等,其中帮助文档中就有说明如何进行多作者,多机构的排版。


*这个上面有一篇帖子总结的十分详细,转帖过来。 供大家参考。 主要用到了latex自带的authblk宏包。

http://tex.stackexchange.com/questions/9594/adding-more-than-one-author-with-different-affiliation


例如要达到这种作者显示效果

Latex写作会议论文中多位作者、机构的排版


\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{authblk}

\title{More than one Author with different Affiliations}
\author[*]{Author A}
\author[*]{Author B}
\author[*]{Author C}
\author[**]{Author D}
\author[**]{Author E}
\affil[*]{Department of Computer Science, \LaTeX\ University}
\affil[**]{Department of Mechanical Engineering, \LaTeX\ University}

\renewcommand\Authands{ and }

\begin{document}
\maketitle
\end{document}

如果不想使用星号,可以用其他符号,如1,2,3序号,或者剑号\dag, 双剑号\ddag来代替 \author[**]的内容。

另外也有其他的表示方式, 详细可以参考以上链接。