无参考的脚注

无参考的脚注

我目前正在用 LaTeX 撰写我的学士论文,我想要一个没有参考文献的脚注。我使用了一个空白脚注:

    \begingroup
    \renewcommand\thefootnote{}\footnote{#1}%
    \addtocounter{footnote}{-1}%
    \endgroup}

它按照我的意愿在页面末尾添加一个脚注,但没有数字,但 pdf 页面末尾出现了一个红色框。使用\footnotetext,我可以创建没有参考的脚注,但需要一个数字。有没有选项可以去掉参考和数字?

目前它是这样的:(我需要hyperref-packageURL 和参考资料以及其他脚注)

\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}

答案1

此处\freefootnote将创建所需的脚注,不带编号和链接。如 MWE 所示,它不会干扰文档其他地方使用链接的编号脚注。

\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}

在此处输入图片描述

在此处输入图片描述

答案2

hidelinks在序言中添加hyperref 选项应该可以解决问题(参见这里)。放入 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}

相关内容