sn-jnl asterix 未作为通讯作者

sn-jnl asterix 未作为通讯作者

我正在撰写一篇论文sn-jnl。所有作者都来自一个机构。因此,我不需要对作者和所属机构进行编号。我继续:

\documentclass[sn-mathphys]{sn-jnl}
\usepackage{xcolor,bm,hyperref,mathtools,nicefrac, amsmath,amssymb,amsfonts,
    amsthm, mathrsfs, textcomp, manyfoot, booktabs, algorithm, algorithmicx, algpseudocode, listings, natbib}
\usepackage[title]{appendix}%

\begin{document}
\title[Hello]{Title}
\author*{\fnm{First} \sur{Author}}\email{[email protected]}

\author{\fnm{Second} \sur{Author}}\email{[email protected]}
\affil{My Inst}
\maketitle
\end{document}

这也会删除通讯作者的星号。

星号仅与数字词缀一起使用,例如:

\documentclass[sn-mathphys]{sn-jnl}
\usepackage{xcolor,bm,hyperref,mathtools,nicefrac, amsmath,amssymb,amsfonts,
    amsthm, mathrsfs, textcomp, manyfoot, booktabs, algorithm, algorithmicx, algpseudocode, listings, natbib}
\usepackage[title]{appendix}%

\begin{document}
\title[Hello]{Title}
\author*[1]{\fnm{First} \sur{Author}}\email{[email protected]}

\author[1]{\fnm{Second} \sur{Author}}\email{[email protected]}
\affil[1]{My Inst}
\maketitle
\end{document}

有没有办法保留通讯作者的星号,但删除所属机构编号?

相关内容