数学模式下的脚注:如何使用符号代替数字?

数学模式下的脚注:如何使用符号代替数字?

帖子中解释了如何在数学模式下添加脚注。问题是 的数字footnotemark可能会与指数混淆,反之亦然:我如何使用符号(例如§)来代替?

笔记我希望使用仅在数学模式下显示符号其余文本则没有。

答案1

不要给数学加脚注。永远不要。但是,如果你不想听这个建议,这里有一种方法:

\documentclass{article}
\usepackage[papersize={8cm,6cm}]{geometry} % just to save space
\usepackage{bigfoot}

\DeclareNewFootnote[para]{math}[fnsymbol]
\MakeSortedPerPage{footnotemath}

\begin{document}

Some text with a footnote.\footnote{Some text in the footnote}
\[
a^n+b^n\ne c^n\,\footnotemarkmath
\]\footnotetextmath{I found a very smart proof of
this, but the footnote space doesn't contain it.}


\end{document}

在此处输入图片描述

相关内容