公式的間距變得很奇怪,其中一個術語帶有下括號

公式的間距變得很奇怪,其中一個術語帶有下括號

因此,我只需要在 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}

在此輸入影像描述

相關內容