如何删除脚注编号?我目前正在使用,\let\thefootnote\relax\footnote
但它只会从引用文本中删除编号,而不会删除脚注文本。所以如果我这样做,ABCDE\let\thefootnote\relax\footnote{Text}
ABCDE 将没有脚注编号,但在脚注中会出现编号
答案1
您可以使用:
{\let\thefootnote\relax\footnote{{There is no number in this footnote}}}
或者在序言中定义一个宏:
\makeatletter
\def\blfootnote{\xdef\@thefnmark{}\@footnotetext}
\makeatother
\blfootnote{}
然后像使用标准命令一样使用。或者,您也可以使用\newcommand
,请参阅贡萨洛的回答。
文本
脚注
\documentclass{article}
\makeatletter
\def\blfootnote{\xdef\@thefnmark{}\@footnotetext}
\makeatother
\begin{document}
This is a text\footnote{dummy} about your question.\blfootnote{No number here!}
And now another dummy to show the numbering.\footnote{Another dummy}
\end{document}