公式间距因其中一个术语上的下划线而变得奇怪

公式间距因其中一个术语上的下划线而变得奇怪

因此,我在 Beamer 演示文稿中的公式中只需要一个下括号,结果两个加号之间出现了一些奇怪的间距。有什么线索可以解决吗?我已经在网上寻找解决方案,但还没有找到。

代码如下:

\begin{block}{Second stage:}
\centering $Y_i = \beta_0 + \beta_1 \widehat{D_i}+ \underbrace{\delta(score_i)}_\text{\parbox{4cm}{\centering Continuous\\[-4pt] function}}+\epsilon_i$
\end{block}

它看起来是这样的。在此处输入图片描述

答案1

您可以使用\substack

\documentclass{beamer}
\usepackage{amsmath}
\begin{document}

\begin{frame}
  \begin{block}{Second stage:}
    \begin{equation*}
      Y_i = \beta_0 + \beta_1 \hat{D}_i + \underbrace{\delta(\text{score}_i)}_{\substack{\text{Continuous} \\ \text{function}}} + \epsilon_i
    \end{equation*}
  \end{block}
\end{frame}

\end{document}

在此处输入图片描述

相关内容