
Actualmente estoy escribiendo mi tesis de licenciatura con LaTeX y quiero una nota a pie de página sin referencia. Usé una nota a pie de página en blanco con:
\begingroup
\renewcommand\thefootnote{}\footnote{#1}%
\addtocounter{footnote}{-1}%
\endgroup}
Me hace una nota a pie de página al final de una página sin número como deseo, pero luego aparece un cuadro rojo al final de la página en el pdf. Con \footnotetext
, puedo crear una nota al pie sin la referencia, pero necesita un número. ¿Existe alguna opción para eliminar la referencia Y el número?
Actualmente es así: (Necesito la hyperref-package
URL, las referencias y las otras notas al pie)
\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}
Respuesta1
Aquí \freefootnote
creará la nota al pie deseada sin número y sin enlace. Como se muestra en el MWE, no interfiere con el uso de notas a pie de página numeradas y vinculadas en otras partes del documento.
\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}
Respuesta2
Agregar la hidelinks
opción de hiperreferencia en su preámbulo debería ser suficiente (consulteaquí). Poner en un MWE:
\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}