脚注不带标记,只在正文中,带标记的在注释词前

脚注不带标记,只在正文中,带标记的在注释词前

现在需要添加一个脚注,该脚注未附加到文档中的任何地方,但它被计入计数器并出现。此外,我希望脚注的编号出现在注释文字之前。(因此它就像一个指向任何地方的“幽灵”脚注。)

答案1

正如我在评论中提到的,我明确反对这种方法。如果读者对脚注感兴趣(我希望如此),他会开始在文本中寻找它的出处,但找不到。没有参考,没有数字!

% arara: pdflatex

\documentclass{article}
\usepackage{fnpct} % just a recommendation, not needed.
\setlength{\textheight}{3cm} % for demo

\begin{document}
Test 1\footnote{Footnote with mark.}. Test 2\stepcounter{footnote}\footnotetext{Footnote without mark.}. Test 3\footnote{Footnote with mark again.}.    
\end{document}

在此处输入图片描述

答案2

\documentclass[pagesize, parskip=half]{scrartcl}
\usepackage{xcolor}

\begin{document}
This is the quick and dirty »solution«:

Hello World\footnote{No anchor}\llap{\color{white}\textsuperscript{1}}\llap{.} Here we
go. Next\footnote{With anchor}

If you use KOMA-script, what about this missing anchor:%
\addtokomafont{footnotereference}{\color{white}}?\footnote{No
  anchor}\llap{.} \addtokomafont{footnotereference}{\color{black}} And now
we've got the references back.\footnote{Hopefully}

\end{document}

相关内容