如何对齐等号及其后的文本

如何对齐等号及其后的文本

我想把这段文字对齐

c = the center of circle
b = the board around each circle 
  = c+b+sin(x)

我该怎么做?我使用了对齐,但没有效果,你能提供简单的例子吗?我试过:

\begin{align*}
&c  &= &\text{the center of circle}\\
&b  &= &\text{the board around each circle }\\
&   &= &c+b+\sin(x)
\end{align*}

答案1

\documentclass{article}
\usepackage{amsmath}
\begin{document}
  \begin{align*}
c & = \text{the center of circle}           \\
b & = \text{the board around each circle}   \\
  & = c + b + \sin(x)
  \end{align*}
\end{document}

给出

在此处输入图片描述

这就是你要找的吗?

align*我在包环境中将其编写为数学表达式amsmath,其中包含右侧的前两行文本。&符号作为行对齐的锚点。

相关内容