通讯作者latex的代码
时间: 2023-07-09 22:41:33 浏览: 974
Latex IEEE Conference Template
在 LaTeX 中,通讯作者可以使用 `\corref` 命令来标记。具体使用方法如下:
1. 在 `\author` 命令中,使用 `\corref{}` 来标记通讯作者。例如:
```
\author{Author A\corref{cor1}, Author B\corref{cor2}}
```
2. 在文档的开头或结尾,使用 `\cortext{cor1}{}` 来输入通讯作者的信息。例如:
```
\cortext[cor1]{Corresponding author. Email: abc@123.com}
```
完整的示例代码如下:
```
\documentclass{article}
\title{My Article}
\author{Author A\corref{cor1}, Author B\corref{cor2}}
\cortext[cor1]{Corresponding author. Email: abc@123.com}
\begin{document}
\maketitle
Hello, world!
\end{document}
```
在上面的代码中,Author A 被标记为通讯作者,并在文档开头使用 `\cortext` 命令输入了通讯作者的信息。
阅读全文