How can you remove the footnote number? I am curerntly using \let\thefootnote\relax\footnote but it only removes the number from the cited text not the footnote text. So if I do ABCDE\let\thefootnote\relax\footnote{Text} ABCDE will have no footnote number but at the footnote the number will appear
Asked
Active
Viewed 2.3k times
9
fdgd
- 93
- 1
- 1
- 3
1 Answers
23
You can either use:
{\let\thefootnote\relax\footnote{{There is no number in this footnote}}}
Or define a macro in the preamble:
\makeatletter
\def\blfootnote{\xdef\@thefnmark{}\@footnotetext}
\makeatother
Then use \blfootnote{} as you would use the standard command. Alternatively, you can also use a\newcommand, see Gonzalo's answer.
Text

Footnotes

\documentclass{article}
\makeatletter
\def\blfootnote{\xdef\@thefnmark{}\@footnotetext}
\makeatother
\begin{document}
This is a text\footnote{dummy} about your question.\blfootnote{No number here!}
And now another dummy to show the numbering.\footnote{Another dummy}
\end{document}
-
2How can I also remove the space in front of the footnote? So I now have:
footnote text at the bottom – fdgd Jun 14 '15 at 15:59 -
1Thanks! The second solution conveniently avoids the problem of creating an empty highlighted link when using \usepackage{hyperref}. – jmb Oct 01 '19 at 12:22
\documentclass{...}and ending with\end{document}. – Jun 14 '15 at 15:25