-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathmultiple_affiliations.tex
More file actions
26 lines (23 loc) · 910 Bytes
/
multiple_affiliations.tex
File metadata and controls
26 lines (23 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
% Multiple affiliations per author. Based on
% http://anthony.liekens.net/index.php/LaTeX/MultipleFootnoteReferences
\documentclass{scrartcl}
\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 somewhere in a trailer park}%
\and Jesus Quintana\footrecall{alley} \footnote{Mexico?}%
\and Uli Kunkel\footrecall{trailer} \footnote{Germany?}%
}
\begin{document}
\maketitle
This example is based on \href{http://anthony.liekens.net/index.php/LaTeX/MultipleFootnoteReferences}{\emph{How do I refer to the same footnote more than once in LaTeX?}} by \href{http://anthony.liekens.net/}{Anthony Liekens}.
\end{document}