Hello everybody,
I sometimes see in scientific documents on the first author a footnote with a dag, the same with the second, but with a ddag.
How can I do this? Thanks!
General ⇒ Dag footnote?
-
- Posts: 120
- Joined: Fri Nov 14, 2008 9:40 pm
NEW: TikZ book now 40% off at Amazon.com for a short time.

Dag footnote?
The footmisc package allows you to redefine the footnote symbol series:
Code: Select all
\documentclass{article}
\usepackage{footmisc}
\DefineFNsymbols{test}{\dagger\ddagger}
\setfnsymbol{test}
\begin{document}
\title{Test}
\author{Author 1\thanks{Institution 1} \and Author 2\thanks{Institution 2}}
\maketitle
\end{document}
-
- Posts: 120
- Joined: Fri Nov 14, 2008 9:40 pm
Dag footnote?
Thanks for your answer; it is was I was looking for.
The problem is that I don't write my title using and , because I've got a titlepage environment:
Is there anyway a solution?
Thanks.
The problem is that I don't write my title using
Code: Select all
\title{}
Code: Select all
\maketitle
Code: Select all
\begin{titlepage}
\begin{center}
% Upper part of the page
\textsc{\LARGE UNIVERSIT\'E DE LIÈGE}\\[1.5cm]
\includegraphics[width=0.50\textwidth]{_img/logo_coul_texte_blason_cadre.ps}\\[1cm]
% Title
%\HRule \\[0.4cm]
\rule{\textwidth}{1pt}\par
\vspace{0.50cm}
{ \huge \bfseries TITLE}\\[0.4cm]
\rule{\textwidth}{1pt}\par
%\HRule \\[1.5cm]
\vfill
% Author
\Large{\textsc{Merciadri\thanks{me@server.com}} Luca}
\vfill
Belgium
\vfill
% Bottom of the page
{\large \today}
\end{center}
\end{titlepage}
Thanks.
Dag footnote?
You can use the titling package to configure the title page in a compatible manner:
Code: Select all
\documentclass[titlepage]{article}
\usepackage[utf8]{inputenc}
\usepackage{footmisc}
\usepackage{titling}
\DefineFNsymbols{test}{\dagger\ddagger}
\setfnsymbol{test}
\renewcommand*{\maketitlehooka}{%
\begin{center}%
{\LARGE\MakeUppercase{Université de Liège}\par}%
\vspace{1.5cm}%
\rule{\textwidth}{1pt}\par
\vspace{0.5cm}%
}
\pretitle{\huge\bfseries}
\posttitle{\par}
\renewcommand*{\maketitlehookb}{%
\vspace{0.4cm}
\rule{\textwidth}{1pt}\par
\vfill
}
\preauthor{\Large}
\postauthor{\par}
\renewcommand*{\maketitlehookc}{%
\vfill
{\Large Belgium\par}%
\vfill
}
\predate{\large}
\postdate{\par}
\renewcommand*{\maketitlehookd}{\end{center}}
\thanksmarkseries{fnsymbol}
\begin{document}
\title{Title}
\author{\textsc{Merciadri}\thanks{me@server.com}~~Luca}
\maketitle
\end{document}
-
- Posts: 120
- Joined: Fri Nov 14, 2008 9:40 pm
Re: Dag footnote?
Thanks, very nice.