Text FormattingTwo distinct sets of footnotes

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
Leo__
Posts: 28
Joined: Thu Oct 28, 2010 4:33 pm

Two distinct sets of footnotes

Post by Leo__ »

Hello,

I'd like to use two distinct sets of footnotes. I have a latex document that works fine, with the author's footnotes. I, the editor, would like to add my own footnotes and would like to distinguish them from the authors'. My own footnotes do not need to be numbered (An * would be fine for each of my footnotes).

What would be the simplest solution ?

Leo
Last edited by Leo__ on Wed Jan 26, 2011 12:46 pm, edited 1 time in total.

Recommended reading 2024:

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

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

User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Two distinct sets of footnotes

Post by frabjous »

Check out the bigfoot and/or manyfoot packages.
meho_r
Posts: 823
Joined: Tue Aug 07, 2007 5:28 pm

Two distinct sets of footnotes

Post by meho_r »

Alternatively, if you don't want editor's footnotes to be separated from "normal" footnotes and want them to appear in the same order they come in the main text, you may try something like this:

Code: Select all

\documentclass{book}

\makeatletter

\long\def\symbolfootnote[#1]#2{\begingroup%
\def\thefootnote{\fnsymbol{footnote}}\footnote[#1]{#2}\endgroup}
   
\makeatother

\newcommand{\ednote}[2][1]{\symbolfootnote[#1]{#2}}

\begin{document}

Test\footnote{Normal footnote}

Test\ednote{Editor's note 1}

Test\ednote{Editor's note 2}

Test\ednote[2]{Editor's note 3 (custom)}

Test\footnote{Another normal footnote}

Test\footnote{Another normal footnote}

Test\ednote[3]{Editor's note 4 (custom)}

Test\footnote{Another normal footnote}

\end{document}
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Two distinct sets of footnotes

Post by localghost »

I think for this purpose the todonotes package (based on pgf/tikZ) might be helpful.


Thorsten
Leo__
Posts: 28
Joined: Thu Oct 28, 2010 4:33 pm

Re: Two distinct sets of footnotes

Post by Leo__ »

Thanks a lot for the replies. I'll use meho_r's suggestion as it works nicely and is simple enough for what I need.

Leo
junket
Posts: 10
Joined: Sat Jan 22, 2011 10:34 pm

Re: Two distinct sets of footnotes

Post by junket »

Hey meho_r,

I was looking for exactly the same thing today, and found this thread. I'm new to latex and I don't know exactly how your solution works, but it works perfectly for what I need.

So thanks alot.

Junket
Post Reply