我希望脚注不显示数字,而是显示我想要的任何文本。因此,如下所示:
Here is my text. No numbers appear here even though there are footnotes embedded all throughout.
----------
1:1 Footnote with custom key '1:1"
1:2 Another footnote with custom key.
2:4 Not necessarily covering every combination, so I need to be able skip some.
答案1
这是一个使用\Footnote
和修改版本的\Footnotemark
选项nccfoots
包裹:
\documentclass{article}
\usepackage{nccfoots}
\makeatletter
\renewcommand*{\Footnotemark}[1]{\NCC@makefnmark{#1}}
\makeatother
\begin{document}
\null\vfill% just for the example
Some test text test text test text test text test text test text test text test text
test text test text test text test text test text test text
test text test text test text test text test text test text test text
test text test text test text test text test text
\Footnote{1:1}{This is the first footnote}
\Footnote{1:2}{This is the second footnote}
\Footnote{2:4}{This is yet another footnote with a different marker}
\end{document}