3

I have used this solution to create a footnote without a marker. As answered, it works fine. However, if you include the hyprref package, the package creates an content-less link for the marker-less footnote:

enter image description here

I could disable the footnote links, e.g.

\usepackage[hyperfootnotes=false]{hyperref}

but I would prefer if the other footnotes in the document did have links. Is there a way to disable the footnote link for a single footnote?

MVE

\documentclass{article}
\usepackage{hyperref}

\newcommand\blfootnote[1]{% \begingroup \renewcommand\thefootnote{}\footnote{#1}% \addtocounter{footnote}{-1}% \endgroup }

\begin{document}

Some text\blfootnote{A footnote without marker} and some more text\footnote{A standard footnote}

\end{document}

jds
  • 488

1 Answers1

4

You can use the NoHyper environment:

\documentclass{article}
\usepackage{hyperref}

\newcommand\blfootnote[1]{% \begin{NoHyper}% \renewcommand\thefootnote{}\footnote{#1}% \addtocounter{footnote}{-1}% \end{NoHyper}% }

\begin{document}

Some text\blfootnote{A footnote without marker} and some more text\footnote{A standard footnote}

\end{document}

Ulrike Fischer
  • 327,261