GeneralI need numeric superscripts in author list

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
hardcoreUFO
Posts: 6
Joined: Tue May 20, 2008 11:12 am

I need numeric superscripts in author list

Post by hardcoreUFO »

For some reason LaTeX, thinking wrongly that it knows best, believes symbols rather than numbers should be used to superscript authors in an article when specifying an address subscript. Is there any way of making \footnote behave like it does everywhere else in a LaTeX document? These sorts of inconsistencies are infuriating.

Thanks in advance.

Recommended reading 2024:

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

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

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

I need numeric superscripts in author list

Post by localghost »

hardcoreUFO wrote:For some reason LaTeX, thinking wrongly that it knows best, believes symbols rather than numbers should be used to superscript authors in an article when specifying an address subscript. [...] These sorts of inconsistencies are infuriating. [...]
Just a remark for the present. This is no inconsistency. There is a deeper sense behind that. After all these superscripts don't mark footnotes, but additional information regarding the authors. You can see that in the way these marks are created, not with \footnote but with the \thanks command. So LaTeX does this in the correct way.

Seems to be only a change in the format of a counter. But at the moment I have no idea what counter that could be (perhaps the counter footnote). A workaround may be the usage of the titlepage option in the article class.


Best regards
Thorsten
User avatar
Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

I need numeric superscripts in author list

Post by Stefan Kottwitz »

Hi,

I agree with Thorsten.

LaTeX does not force you to do it in the custom way. It is Open Source, so you may change it. After looking at article.cls and latex.ltx I found a workaround that may help you to get numeric superscripts by redefining the internal macro \@fnsymbol. I provide a small working example:

Code: Select all

\documentclass[a4paper,10pt]{article}
\makeatletter
\renewcommand*\@fnsymbol[1]{\the#1}
\makeatother
\title{Test}
\author{Tester\footnote{author footnote}}
\begin{document}
\maketitle
\setcounter{footnote}{1}
\section{One}
Text\footnote{text footnote}
\end{document}
Stefan
LaTeX.org admin
hardcoreUFO
Posts: 6
Joined: Tue May 20, 2008 11:12 am

Re: I need numeric superscripts in author list

Post by hardcoreUFO »

Thanks for the feedback guys. I still submit that the implementation of footnotes is inconsistent. A user expects footnotes to behave the same anywhere in the document; unless you can provide a good reason not to be able to use:

\footnote[1]{My footnote}

in the author list. It works everywhere else, therefore it is inconsistent (and causes users like me to pull their hair out).

Anyhow, I will try Stefan's suggestion. Thanks again.
hardcoreUFO
Posts: 6
Joined: Tue May 20, 2008 11:12 am

Re: I need numeric superscripts in author list

Post by hardcoreUFO »

For the reference of others, Stefan's suggestion worked well.
Post Reply