我怎样才能将水平花括号放在方程式的底层部分,以便我可以在特定方程式的该部分下写另一个公式。PS:我不想在花括号下添加文本。
这是我的代码:
\[
\tilde{Y}^I+\tilde{Y}^X =
\biggl[\delta_Y \biggl(\Lambda_K \frac{\tilde{K}}{\mu}\biggr)^{-\rho Y} +
(1-\delta_Y )(\Lambda^T_l L^F)^{-\rho Y}
\biggr]^{-1/\rho Y}-S_{YCZ} \tilde{C}^H -
\underbrace{\frac{S_{GCF}}{1-S_{GCF}}\tilde{C}^H}_\text{\tilde{C}^{G}}
\]
我想要得到什么:
答案1
您的命令有误\underbrace
。正确的是:
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
\tilde{Y}^I+\tilde{Y}^X =
\biggl[\delta_Y \biggl(\Lambda_K \frac{\tilde{K}}{\mu}\biggr)^{-\rho Y} +
(1-\delta_Y )(\Lambda^T_l L^F)^{-\rho Y}
\biggr]^{-1/\rho Y}-S_{YCZ} \tilde{C}^H -
\underbrace{\frac{S_{GCF}}{1-S_{GCF}}\tilde{C}^H}_{\tilde{C}^{G}}\,,
\]
\end{document}