如何为同一作者添加不同的所属内容

如何为同一作者添加不同的所属内容

这篇论文有两位作者,一位是通讯作者。我怎样才能让这两位作者有相同的隶属关系,并在脚注中添加通讯作者的电子邮件地址。脚注编号符号应该是阿拉伯数字,通讯作者也应该有一个*编号符号。我试图使用下面的代码,但它不起作用。第二个\thanks直接在前一个编号符号上放置了一个新的编号符号。

\documentclass[a4paper,12pt]{article}
    \makeatletter
     \let\@fnsymbol\@arabic
    \makeatother
\begin{document}
\title{XX }
  \author1{XX \thanks{Address 1} \and  author 2\footnotemark[1*]\thanks{email}}
  \date{}

  \maketitle
  \end{document}

答案1

如果您找到自己喜欢的论文,请搜索相应期刊/会议提供的 LaTeX 课程。这些课程通常支持您所需的开箱即用内容。

如果你想和班级呆在一起article,你可以这样做。

\documentclass[a4paper,12pt]{article}
\usepackage{xpatch}
\makeatletter
\xpatchcmd\maketitle{\@fnsymbol}{\@arabic}{}{}
\xpatchcmd\maketitle{\rlap}{}{}{}
\newcommand\corrauth[1]%
  {\def\@thefnmark{*}\@footnotemark
   \protected@xdef\@thanks{\@thanks\protect \corrauthtext{#1}}%
  }
\newcommand\corrauthtext{\def\@thefnmark{*}\@footnotetext}
\makeatother
\begin{document}
\title{The Title}
\author
  {A.~U.~Thor\thanks{Address 1}
   \and
   A.~Uthor%
   \footnotemark[1]\textsuperscript{,}\corrauth{email}%
  }
\date{}
\maketitle
\end{document}

在此处输入图片描述 在此处输入图片描述

相关内容