我想知道是否有办法让只有一个脚注出现,并且带有符号(*)而不是数字。
谢谢!!!
答案1
如果你没有在文档中使用任何花哨的东西(例如hyperref
,比如说),你可以重新定义\@xfootnote
:
\documentclass{article}
%\setlength{\textheight}{.3\textheight} Just for this example
\makeatletter
\def\@xfootnote[#1]{%
\protected@xdef\@thefnmark{#1}%
\@footnotemark\@footnotetext}
\makeatother
\begin{document}
This is a\footnote{Regular footnote} piece of text.
This is a\footnote[*]{Different footnote} piece of text.
This is a\footnote{Regular footnote} piece of text.
This is a\footnote{Regular footnote} piece of text.
This is a\footnote[$\dagger$]{Different footnote} piece of text.
This is a\footnote{Regular footnote} piece of text.
This is a\footnote[$\star$]{Different footnote} piece of text.
\end{document}