Fußnote ohne Quellenangabe

Fußnote ohne Quellenangabe

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 \footnotetextkann 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-packageURL 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 \freefootnotewird 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}

Bildbeschreibung hier eingeben

Bildbeschreibung hier eingeben

Antwort2

Das Hinzufügen der hidelinksOption 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}

verwandte Informationen