有多个脚注的作者

有多个脚注的作者

假设我有一篇文章。标题下有三位作者的名字。第一位作者属于两个组织。第二位作者属于第一位作者中的一位。最后一位作者属于第三个组织。

我考虑过其中一种\footnote\thanks但似乎都不允许我用同一个脚注标记多个作者,也不允许我用多个脚注标记一个作者。

以下是一个例子:

AC克拉克(a,b);F.赫伯特(b);I.阿西莫夫(c)

(一):斯坦福大学

(二):耶鲁大学

(三):哈佛大学

答案1

这里一个简单的解决方法就是在需要的地方插入适当的内容\thanks。下面的 MWE 通过以下方式实现此目的\specificthanks{<num>}

在此处输入图片描述

\documentclass{article}
\makeatletter
\newcommand{\specificthanks}[1]{\@fnsymbol{#1}}% Inserts a specific \thanks symbol
\makeatother
\title{My document}
\author{A.C.~Clarke\thanks{Stanford University}
  \textsuperscript{, \specificthanks{2}} \and
  F.~Herbert\thanks{Yale University}\label{yale-uni} \and
  I.~Asimov\thanks{Harvard University}}
\begin{document}
\maketitle
\end{document}

答案2

我一直在使用Anthony Liekens 的这个小技巧保存并记住脚注。

这是 MWE例子我曾经为自己做过准备……

\documentclass{article}
\usepackage{hyperref}
\newcommand{\footremember}[2]{%
\footnote{#2}
\newcounter{#1}
\setcounter{#1}{\value{footnote}}%
}
\newcommand{\footrecall}[1]{%
\footnotemark[\value{#1}]%
}
\title{How to bowl properly}
\author{%
  The Dude\footremember{alley}{Holly Star Lanes Bowling Alley}%
  \and Walter Sobchak\footremember{trailer}{probably in a trailer park}%
  \and Jesus Quintana\footrecall{alley} \footnote{Mexico?}%
  \and Uli Kunkel\footrecall{trailer} \footnote{Germany?}%
  }
\begin{document}
\maketitle
The whole example is taken from \href{http://anthony.liekens.net/index.php/LaTeX/MultipleFootnoteReferences}{Anthony Liekens}\ldots
\end{document}

相关内容