如何在分数下写数字

如何在分数下写数字

是否可以像下图这样在分数下写一个数字?

我发现underbrace分数和数字之间不需要括号。

分数示例

答案1

\documentclass{article}

\usepackage{mathtools}

\begin{document}
\begin{equation}
\underbracket[0pt]{\frac{5}{9}}_{(7)}
\end{equation}
\end{document}

答案2

amsmath's \underset(或\overset)可能对此有用(\struts 提供一些额外的间距):

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath}

\begin{document}
\[
  f(x) = \underset{\strut(7)}{\frac{5}{9}} + \overset{\strut(8)}{\frac{4}{9}}
\]
\end{document}

相关内容