使下划线文本和注释文本对齐

使下划线文本和注释文本对齐

您好,我尝试用几个关键词搜索这个问题,但没有成功。

本质上,这是我想要创建的最终结果:在此处输入图片描述

正如您所见,“完全正方形”是一个下括号,与“圆括号,和...”处于同一级别。

但是这是我当前的代码和进度

\begin{align*}
f(x)&=x^2+16x+24&&\cmt{Given function}\\
&=\underbrace{(x^2+16x+64)}_{\text{perfect square}}-64+24&&\text{Complete the square: Add 64 inside}\\
&&&\text{the parentheses, and subtract 64 outside}\\
&=(x+8)^2-40&&\text{Factor and simplify}
\end{align*}

在此处输入图片描述

(忽略红色,我可以处理)

所以我想知道如何让它们在同一垂直水平上对齐?

谢谢你!

答案1

您想使用顶部对齐tabular

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{align*}
f(x)&=x^2+16x+24&&\text{Given function}\\
&=\underbrace{(x^2+16x+64)}_{\text{perfect square}}-64+24&&
  \text{\begin{tabular}[t]{@{}l@{}}
        Complete the square: Add 64 inside\\
        the parentheses, and subtract 64 outside
        \end{tabular}}\\
&=(x+8)^2-40&&\text{Factor and simplify}
\end{align*}

\end{document}

在此处输入图片描述

相关内容