如何给带有方程式的脚注添加行距?

如何给带有方程式的脚注添加行距?

我需要添加一些脚注来解释用于获得某些结果的方程式。但是,其中一个是具有向下取整函数的分数,并延伸到上下行。如何在脚注 2 的方程式与脚注 3 的方程式相接的行之间添加空间,而不会影响所有其他脚注的正常行距?

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{mathtools}
\DeclarePairedDelimiter\ceil{\lceil}{\rceil}
\DeclarePairedDelimiter\floor{\lfloor}{\rfloor}

\begin{document}
    First equation\footnote{my footnote
                            $\mathrm{NMI}=(L+R)-P$}.
    Then second equation\footnote{Another footnote
                            $\mathrm{NMPI}=\floor*{\dfrac{(L+1)(R+1)}{P+1}-1}$}
    Then third equation \footnote{Long footnote longer explanation
                            $\mathrm{IL}=\dfrac{L \times R }{P}$}
    Final footnote with equation\footnote{This is the last footnote 
                                 but it has no equations.}
\end{document}

脚注方程

答案1

您可以简单地\vspace{1ex}在脚注内添加一个命令。

Then second equation\footnote{Another footnote
$\mathrm{NMPI}=\floor*{\dfrac{(L+1)(R+1)}{P+1}-1}$\vspace{1ex}}

答案2

使用_{\mathstrut}可以给表达增加一些深度,以免干扰下面的线条。

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{mathtools}
\DeclarePairedDelimiter\ceil{\lceil}{\rceil}
\DeclarePairedDelimiter\floor{\lfloor}{\rfloor}

\begin{document}
    First equation\footnote{my footnote
                            $\mathrm{NMI}=(L+R)-P$}.
    Then second equation\footnote{Another footnote
                            $\mathrm{NMPI}=\floor*{\frac{(L+1)(R+1)}{P+1}-1}_{\mathstrut}$}
    Then third equation \footnote{Last footnote and longer explanation
                            $\mathrm{IL}=\frac{L \times R }{P}$}
    Final footnote with equation\footnote{This is the last footnote 
                                 but it has no equations.}
\end{document}

在此处输入图片描述

另一个(也是我自己推荐的)选项是使用手动调整大小的微调分隔符,而不是太大的\left\right。另外,我认为\dfrac这不是脚注的好选择。

$\mathrm{NMPI}=\bigl\lfloor\frac{(L+1)(R+1)}{P+1}-1\bigr\rfloor$

在此处输入图片描述

相关内容