Page LayoutAuthor affiliation as footnotes

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
NELLLY
Posts: 113
Joined: Thu Nov 26, 2009 2:21 am

Author affiliation as footnotes

Post by NELLLY »

Hello
I need in the authors affiliations to get them at the bottom of the page as footnotes and the authors indexed by the letters a and b.
I used the following code

Code: Select all

\documentclass[11pt,a4paper]{article}

\usepackage{authblk}

\title{The Title}
\author{Author XXX\textsuperscript{a}\thanks{\noindent\textsuperscript{a}Address of the author XXX \\
Email...}\,
Author YYY \textsuperscript{b}{\footnote{\textsuperscript{b}
Address of the author YYY}} }
\date{}

\begin{document}
\maketitle



\end{document}

I get the attached output.
I need to suppress the symbol † both after the author name and the address of the second author. I need also to get for the first author name a*† and at the footnote * will contain the address and † the E-mail of the first author.
Thanks.
Attachments
output.pdf
(25.11 KiB) Downloaded 3538 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Author affiliation as footnotes

Post by localghost »

You don't really need authblk here. Alternatively you can try a different approach like this with the help of etoolbox. It's a patch of the \maketitle command.

Code: Select all

\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{etoolbox}

\makeatletter
\patchcmd{\maketitle}{\@fnsymbol}{\@alph}{}{}  % Footnote numbers from symbols to small letters
\makeatother

\title{The Title}
\author{
  Author XXX\thanks{Address of the author XXX, Email ...}
  \and
  Author YYY\thanks{Address of the author YYY, Email ...}
}
\date{}

\begin{document}
  \maketitle
\end{document}
Just click on "Open in writeLaTeX" in the head of the above code box to see the output instantly.


Thorsten
Post Reply