我想知道在带有指数的数学变量旁边创建脚注的良好做法是什么,而不会将脚注编号与变量指数混淆。以下是说明示例:
\documentclass{article}
\begin{document}
$x^2$\footnote{This is a footnote for describing a notation detail, for example. The footnote number is not to be confused with the exponent of the variable x.} is the square root of $x$.
\end{document}
感谢您提供的任何想法。
答案1
这仍然不是一个好主意,但这些会有所帮助。使用符号表明它们不是指数。另一方面,可用的符号有限,因此需要迷你页面。Hyperref 在脚注标记周围添加了彩色框。
\documentclass{article}
\usepackage{hyperref}
\makeatletter
\let\fnspecial=\@fnsymbol
\makeatother
\begin{document}
\noindent\begin{minipage}{\columnwidth}
\def\thempfn{\fnspecial{\value{mpfootnote}}}%
$x^2$ \footnote{This is a quadratic.}\quad
$x^3$ \footnote{This is a cubic.}
\end{minipage}
\end{document}
这样可以\footlink
将文本直接链接到脚注,而无需添加脚注标记。脚注会正常编号。
\documentclass{article}
\usepackage{hyperref}
\newcommand{\footlink}[2]{% #1=linked text, #2=footnote text
\refstepcounter{footnote}% or \@mpfn
\hyperlink{Hfootnote.\arabic{footnote}}{#1}%
\footnotetext[\value{footnote}]{\raisebox{\ht\strutbox}{%
\hypertarget{Hfootnote.\arabic{footnote}}{\null}}%
#2}}
\begin{document}
\footlink{$x^2$}{This is a quadratic.}\quad
\footlink{$x^3$}{This is a cubic.}
\end{document}