不是脚注的脚注

不是脚注的脚注

我希望在页面底部写不超过两行的文字,以感谢某些人,而不是为此专门写一整篇致谢部分。最好在这两行的顶部画一条直线。因此,我说的是一种脚注,但这不是真正的脚注,没有脚注的目的,当然也没有编号。我甚至不知道如何引用这样的东西,也不知道这是否是标准。

我怎能这样做?

答案1

\documentclass{article}

\begin{document}

text{\let\thefootnote\relax\footnotetext{footnote that is not a footnote}}

text\footnote{normal footnote}

\end{document}

答案2

这是另一种方法

\documentclass[10pt,a4paper]{article}

\newcommand\nfootnote[1]{%
    \begingroup
    \renewcommand\thefootnote{}\footnote{#1}%
    \addtocounter{footnote}{-1}%
    \endgroup
}


\begin{document}

Text\footnote{One}

Text\nfootnote{Two}

Text\footnote{Three}

\end{document}

在此处输入图片描述

编辑:Attrib-我最初看到来自无标记的脚注

相关内容