Latex IEEE模板-多作者多单位的几种写法

"本文详细列举了IEEE和ACM模板中论文作者单位的多种写法,包括不同标记方式和邮箱链接的添加方法。通过示例展示了如何在LaTeX中设置作者信息,包括使用IEEEauthorblockN和IEEEauthorblockA命令,以及利用href包装实现邮箱超链接。此外,还提及了ACM模板的作者和单位书写格式。"

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

我给出了IEEE/ACM论文作者单位的几种写法,就像孔乙己说回字有四种写法一样无聊。

IEEE模板会议论文对于多作者多单位的文章,有好几种写法,我这里都给列一下。

IEEE模板的下载地址:https://www.ieee.org/conferences/publishing/templates.html

写法一


   
   
  1. \author{
  2. \IEEEauthorblockN{San Zhang\IEEEauthorrefmark{a*}, Si Li\IEEEauthorrefmark{a,b}, Wu Wang\IEEEauthorrefmark{b}}
  3. \IEEEauthorblockA{\IEEEauthorrefmark{a} School of Computer Science, Wuhan University, Wuhan, China}
  4. \IEEEauthorblockA{\IEEEauthorrefmark{b} Department of Computer Science and Technology, Tsinghua University, Beijing, China}
  5. \IEEEauthorblockA{\{zhangsan\}@XXX.com, \{lisi, wangwu\}@XXX.edu.cn}
  6. }

写法二


   
   
  1. \author{
  2. \IEEEauthorblockN{San Zhang$^{a*}$, Si Li$^{a,b}$, Wu Wang$^b$}
  3. \IEEEauthorblockA{$^a$ School of Computer Science, Wuhan University, Wuhan, China}
  4. \IEEEauthorblockA{$^b$ Department of Computer Science and Technology, Tsinghua University, Beijing, China}
  5. \IEEEauthorblockA{\{zhangsan\}@XXX.com, \{lisi, wangwu\}@XXX.edu.cn}
  6. }

上面两种写法的效果如下:

图中的a, b换成1,2,或者十字,星号都行,看个人喜好了。

写法三(给人名附上邮箱地址链接)


   
   
  1. \author{
  2. \IEEEauthorblockN{San Zhang$^{a*}$, Si Li$^{a,b}$, Wu Wang$^b$, Goudan Li$^c$}
  3. \IEEEauthorblockA{$^a$ School of Computer Science, Wuhan University, Wuhan, China}
  4. \IEEEauthorblockA{$^b$ Department of Computer Science and Technology, Tsinghua University, Beijing, China}
  5. \IEEEauthorblockA{$^c$ Chentangguan, Tianjing, China}
  6. % \IEEEauthorblockA{\{zhangsan\}@XXX.com, \{lisi, wangwu\}@XXX.edu.cn, {g.li}@XXX.com}
  7. \IEEEauthorblockA{\href{mailto:zhangsan@XXX.com}{zhangsan}@XXX.com, \{\href{mailto:lisi@XXX.edu.cn}{lisi}, \href{mailto:wangwu@XXX.edu.cn}{wangwu},\}@XXX.edu.cn, \href{mailto:g.li@XXX.com}{g.li}@XXX.com} % 给人名附上邮箱地址
  8. }

鼠标悬停就能显示出邮箱地址,需要用到:包\usepackage{hyperref},若是不想显示超链接方框,可以用包\hypersetup{hidelinks}将方框隐去。

\usepackage{hyperref} %超链接

\hypersetup{hidelinks} %隐去超链接框框

写法四(IEEE模板)


   
   
  1. \author{\IEEEauthorblockN{1\textsuperscript{st} Given Name Surname}
  2. \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\
  3. \textit{name of organization (of Aff.)}\\
  4. City, Country \\
  5. email address or ORCID}
  6. \and
  7. \IEEEauthorblockN{2\textsuperscript{nd} Given Name Surname}
  8. \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\
  9. \textit{name of organization (of Aff.)}\\
  10. City, Country \\
  11. email address or ORCID}
  12. \and
  13. \IEEEauthorblockN{3\textsuperscript{rd} Given Name Surname}
  14. \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\
  15. \textit{name of organization (of Aff.)}\\
  16. City, Country \\
  17. email address or ORCID}
  18. \and
  19. \IEEEauthorblockN{4\textsuperscript{th} Given Name Surname}
  20. \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\
  21. \textit{name of organization (of Aff.)}\\
  22. City, Country \\
  23. email address or ORCID}
  24. \and
  25. \IEEEauthorblockN{5\textsuperscript{th} Given Name Surname}
  26. \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\
  27. \textit{name of organization (of Aff.)}\\
  28. City, Country \\
  29. email address or ORCID}
  30. \and
  31. \IEEEauthorblockN{6\textsuperscript{th} Given Name Surname}
  32. \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \\
  33. \textit{name of organization (of Aff.)}\\
  34. City, Country \\
  35. email address or ORCID}
  36. }

 

写法五 (ACM模板)

顺便把ACM模板的写法也给出来


   
   
  1. \author{San Zhang}
  2. \affiliation{%
  3. \institution{School of Computer Science}
  4. \city{Wuhan}
  5. \country{China}}
  6. \email{zhangsan@XXX.com}
  7. \author{Si Li}
  8. \affiliation{%
  9. \institution{School of Computer Science}
  10. \city{Wuhan}
  11. \country{China}}
  12. \email{lisi@XXX.edu.cn}
  13. \author{Wu Wang}
  14. \affiliation{%
  15. \institution{Department of Computer Science and Technology}
  16. \city{Beijing}
  17. \country{China}}
  18. \email{wangwu@XXX.edu.cn}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值