I am currently writing my bachelor thesis with LaTeX and I want a footnote without a reference. I used a blank footnote with:
\begingroup
\renewcommand\thefootnote{}\footnote{#1}%
\addtocounter{footnote}{-1}%
\endgroup}
It makes me a footnote at the end of a page without a number as I wish, but then a red box appears at the end of the page in the pdf. With \footnotetext, I can create a footnote without the reference, but it needs a number. Is there an option to get rid off the reference AND the number?
Currently its like this: (I need the hyperref-package for url and references and the other footnotes)
\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}

