脚注的脚注

脚注的脚注

如何为脚注添加脚注?例如,

Playfair's axiom\footnote{so called in honor of mathematician John Playfair, etc, etc., but was actually discovered by Proclus\footnote{Greek mathematician, etc, etc.}}

答案1

Playfair's axiom\footnote{%
so called in honor of mathematician John Playfair, etc, etc.,
but was actually discovered by Proclus\footnotemark}
\footnotetext{Greek mathematician, etc, etc.}

但我建议不要这么做。

作为奖励,这里有一个关于如何真正弄乱脚注的例子。

\documentclass{article}
\begin{document}
\footnotetext[4]{We have to go back to the future, Marty!}
Foo\footnote{The footnote to this sentence is true\footnotemark}
\footnotetext{The footnote to this sentence is false\footnotemark[1]} 
more body text\footnotetext[42]{This footnote doesn't appear in the main text}
And more body text\footnote{And we're back to the normal numbering.}
But look where this footnote text ends up!\footnotemark
\end{document}

几点。

  • 脚注按照\footnotemark文中出现的顺序出现。
  • 两者的可选参数\footnotemark使\footnotetext您可以控制实际出现的数字。(如果以后再次相关,则可用于重复脚注。
  • 这里的一切都应该完美地\label配合\ref

主体:

主体

脚注:

脚注

答案2

使用bigfoot包(正如我在上面的评论中所建议的那样)。例如:

\documentclass{article}

\usepackage{bigfoot}
\DeclareNewFootnote{Default}
\DeclareNewFootnote{B}[alph]
\MakeSortedPerPage{B}% perhaps also useful to know about

\begin{document}

\verb+bigfoot+%
\footnote{Available on CTAN.} %
improves \LaTeX's%
\footnoteB{Widely known to be less than ideal.} %
footnoting abilities.  \verb+bigfoot+%
\footnote{Available on CTAN.} %
improves \LaTeX's%
\footnoteB{Widely known to be less than ideal.\footnote{See also over
here: one important limitation is that ``Higher-placed footnotes
can't be anchored in inferior ones'' (see \verb+bigfoot.sty+).}} % 
footnoting abilities.

\end{document}

相关内容