Ich schreibe gerade meine Bachelorarbeit mit LaTeX und möchte eine Fußnote ohne Quellenangabe. Ich habe eine leere Fußnote verwendet mit:
\begingroup
\renewcommand\thefootnote{}\footnote{#1}%
\addtocounter{footnote}{-1}%
\endgroup}
Es erstellt mir eine Fußnote am Ende einer Seite ohne Nummer, wie ich es wünsche, aber dann erscheint im PDF ein rotes Kästchen am Ende der Seite. Mit \footnotetext
kann ich eine Fußnote ohne Referenz erstellen, aber sie benötigt eine Nummer. Gibt es eine Option, um die Referenz UND die Nummer zu entfernen?
Derzeit sieht es so aus: (Ich brauche die hyperref-package
URL und Referenzen und die anderen Fußnoten)
\documentclass[a4paper, 12pt, bibtotocnumbered]{scrartcl}
\usepackage{hyperref}
\newcommand\blfootnote[1]{%
\begingroup
\renewcommand\thefootnote{}\footnote{#1}%
\addtocounter{footnote}{-1}%
\endgroup
}
\begin{document}
I want a footnote without reference and without a number.\blfootnote{This creates a footnote without number but with reference.}
\end{document}
Antwort1
Hiermit \freefootnote
wird die gewünschte Fußnote ohne Nummer und ohne Link erstellt. Wie im MWE gezeigt, beeinträchtigt dies nicht die Verwendung von verknüpften, nummerierten Fußnoten an anderer Stelle im Dokument.
\documentclass[a4paper, 12pt, bibtotocnumbered]{scrartcl}
\usepackage{hyperref}
\let\svthefootnote\thefootnote
\newcommand\freefootnote[1]{%
\let\thefootnote\relax%
\footnotetext{#1}%
\let\thefootnote\svthefootnote%
}
\begin{document}
I want a footnote without reference and without a number.%
\freefootnote{This creates a footnote without number
and no longer with reference.}
Regular footnote.\footnote{Test}
\end{document}
Antwort2
Das Hinzufügen der hidelinks
Option hyperref in Ihrer Präambel sollte den Zweck erfüllen (sieheHier). In ein MWE einsetzen:
\documentclass[a4paper, 12pt, bibtotocnumbered]{scrartcl}
\usepackage[
hidelinks % hide link outlines
]{hyperref}
\newcommand\blfootnote[1]{%
\begingroup
\renewcommand\thefootnote{}\footnote{#1}%
\addtocounter{footnote}{-1}%
\endgroup
}
\begin{document}
I want a footnote without reference and without a number.\blfootnote{This creates a footnote without number but with reference.}
\end{document}