Latex 如何给通讯作者加*号

2022-09-02 20:33:02 浏览数 (1)

最近在用Latex写论文,遇到了一个问题:给通讯作者加特殊字符,如数字或者星号。最后问师姐,才知道了解决方案,下面是加星号的一个例子。

代码语言:javascript复制
documentclass[5p,twocolumn,10pt,times]{elsarticle}
usepackage{amsmath}
usepackage{hyperref}
%modulolinenumbers[5]
addtolength{textheight}{8mm}
addtolength{textwidth}{4mm}
addtolength{voffset}{-10mm}
addtolength{hoffset}{-3mm}
usepackage[ruled,vlined]{algorithm2e}
bibliographystyle{elsarticle-num}
usepackage{booktabs}
usepackage{multirow}

begin{document}
baselineskip11pt

begin{frontmatter}

title{Deep Learning-based Parameterization}
author{first author}
author{second authorcorref{mycorrespondingauthor}}
cortext[mycorrespondingauthor]{Corresponding author}
ead{ttttt@ustc.edu.cn}
address{School of Mathematical Sciences, University of Science and Technology of China}
%author{Third Author}
%address{Department of Computer Science, Tel Aviv University}

在二作second author后面加下面的字符就可以实现加星号:

代码语言:javascript复制
corref{mycorrespondingauthor}

下面的效果图:

0 人点赞