有时我会使用一个数学公式,例如 \dot{x}
在脚注中,但是我很难识别虚线变量的有效存在(我的错,我知道......引用诗人的话“那不是电灯,我的朋友\\那是你的视力变得模糊。”)。
无论如何,在脚注中使用时,是否可以使用更重的符号来表示通常用于表示相对于时间的推导的点?
答案1
已编辑,对点位置应用斜体校正。
\documentclass{arlticle}
\usepackage{stackengine}
\newcommand\nsdot[1]{%
\setbox0=\hbox{$#1$}%
\stackengine{1.2pt}{\copy0}{\kern.2\ht0\kern.3pt\normalsize .}{O}{c}{F}{F}{S}%
}
\newcommand\lgdot[1]{%
\setbox0=\hbox{$#1$}%
\stackengine{1.2pt}{\copy0}{\kern.2\ht0\kern.3pt\large .}{O}{c}{F}{F}{S}%
}
\begin{document}
\footnote{Here is the normal $\dot x$ and now
\nsdot{x} and here is
\lgdot{x}\\
Also, \nsdot{x}, \nsdot{k}, \nsdot{P}.}
\end{document}