General ⇒ Double footnotes
Double footnotes
I'd like to make a 'double footnote', that is, two footnote numbers in diferentent positions (on the same paragraph and page) linked to the same text. Someone has any idea of how can I get it?
Thank you!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Double footnotes
Re: Double footnotes
I was thinking of the two footnote numbers seppared by a comma (,), but your solution is even better

Thank you very much
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Double footnotes
n070161 wrote:[…] I was thinking of the two footnote numbers seppared by a comma (,) […]
Code: Select all
\usepackage[multiple]{footmisc}
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Double footnotes
No, I don't think that's what he's after. The footmisc package would allow you to put two distinct footnotes in the same spot. Unless I misunderstood, n070161 wants the same footnote in two different spots. The two numbers separated by a comma were to go in the footnote itself, not in the reference to the footnote, which is what footmisc offers.localghost wrote:n070161 wrote:[…] I was thinking of the two footnote numbers seppared by a comma (,) […]Best regardsCode: Select all
\usepackage[multiple]{footmisc}
Thorsten
-
- Posts: 94
- Joined: Wed Sep 07, 2011 3:14 pm
Re: Double footnotes
1) Take the footnote in question, and add a label to it, probably at the beginning. Name it something memorable (Lyx is usually helpful with this).
2) Wherever you want to add duplicate footnotes, insert a superscript style.
3) in the elevated text, insert a cross-reference, and select the label you made in 1).
You can also do this inside footnote environments, and arbitrarily throughout the document. If you set continuous numbering in your preamble, you can easily insert footnote references pointing to actual footnotes hundreds of pages later, or prior.
I'm unsure which packages you will need for all this. I have footmisc, bigfoot, fancyhdr, and KOMAScript set, the last of which pulls in a bunch of packages on its own.
Enjoy,
EE
Double footnotes
This is exactly what theExecutorElassus wrote:There's another, slightly easier way to get what you're after-- provided that the two footnotes you use can have the same number. If that's the case (and why do you want to give the same footnote two different numbers anyway?), there's actually a very handy trick that lets you mess around with footnotes quite a bit in your document.
1) Take the footnote in question, and add a label to it, probably at the beginning. Name it something memorable (Lyx is usually helpful with this).
2) Wherever you want to add duplicate footnotes, insert a superscript style.
3) in the elevated text, insert a cross-reference, and select the label you made in 1).
\footref
command is for that both the KOMA-Script classes and the memoir
class provide. Other classes can use it, too, by loading the scrextend
package:Code: Select all
\documentclass{scrartcl}
\begin{document}
Company SplishSplash\footnote{This is a registered trade name.
All rights are reserved.\label{fn:refnote}}
produces not only SplishPlump\footref{fn:refnote}
but also SplishPlash\footref{fn:refnote}.
\end{document}
Regards