Atualmente estou escrevendo minha tese de bacharelado em LaTeX e quero uma nota de rodapé sem referência. Usei uma nota de rodapé em branco com:
\begingroup
\renewcommand\thefootnote{}\footnote{#1}%
\addtocounter{footnote}{-1}%
\endgroup}
Isso me faz uma nota de rodapé no final de uma página sem número como desejo, mas depois aparece uma caixa vermelha no final da página no pdf. Com \footnotetext
, posso criar uma nota de rodapé sem a referência, mas precisa de um número. Existe uma opção para se livrar da referência E do número?
Atualmente é assim: (preciso da hyperref-package
url e das referências e das demais notas de rodapé)
\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}
Responder1
Aqui, \freefootnote
irá criar a nota de rodapé desejada sem número e sem link. Conforme mostrado no MWE, isso não interfere no uso de notas de rodapé numeradas e vinculadas em outras partes do 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}
Responder2
Adicionar a hidelinks
opção hyperref em seu preâmbulo deve resolver o problema (vejaaqui). Coloque em um 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}