如何在 Latex 中在数学方程式下方放置括号?

如何在 Latex 中在数学方程式下方放置括号?

我想在我的论文中插入这个等式:

在此处输入图片描述

如您所见,“round(...)”下有一个强调。我不知道该怎么做(这个等式是用 word 写的)。我想确保“fine time shift”在新行中,这样这个等式看起来就不像分数表达式。

感谢您的帮助!

答案1

使用标准 LaTeX 命令(数学模式)

\underbrace{Text to be underbraced}_{Text under the brace in small print}

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath} % for the \text command
\newcommand\ntime{n_{\mathit{time}}}
\newcommand\nbeam{n_{\mathit{beam}}}
\newcommand\nelem{n_{\mathit{elem}}}
\newcommand\round{\mathop{round}}
\begin{document}
\[ \mathit{BF}(n_{\ntime},n_{\nbeam}) =\sum_{\nelem=0}^{\nelem} \mathit{Data}(\nelem,\ntime+
   \underbrace{\round(\Delta t(\nelem,\ntime,\nbeam)\cdot\mathit{fs})}_{\text{Fine time shift, interpolated Ts}}
   ,\nbeam)
\]
\end{document}

相关内容