我在制作如图所示的方程式的 Underbrace 部分时遇到了一些问题。独特的部分是“b”使用了两次。
谢谢 !
答案1
您可以使用下括号“a+(nothing)”,打印零宽度“b”,然后再次使用下括号“(nothing)+c”:
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
\overbrace{
\underbrace{a+{}}_\text{text}
\mathclap{b}
\underbrace{{}+c}_\text{text}
}^{\text{text}}
\]
\end{document}