答案1
回答:诀窍是aligned
在一个环境中嵌套一个环境align*
。
背景
事实上,您需要在全局对齐(向右对齐)内进行局部对齐(两行相等)。环境aligned
创建了一个固定块,该块本身相对于其他行定位。
(如解释的那样这里 align*
环境会创建数学模式。因此,当您已经处于数学模式时,您应该使用环境aligned
。)
在align*
和aligned
环境中,您必须在分隔行上写方程式。您指示新行以 开头\\
。然后,要知道如何/在哪里对齐这些行,这些环境使用“键” &
。它们按以下方式右对齐或左对齐:
right flushed text & left flushed text & right flushed text & left flushed text \\
loooooooong text that defines the alignment & some text & some text & lorem ipsum \\
lorem & some other text & always the same story about lengths & lorem ipsum \\
some text & loooooooong text that defines the alignment & lorem & some other text \\
平均能量损失
\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}
\begin{align*}
2\sin2\theta+1=0 &\\
\sin2\theta=-\dfrac{1}{2} &\\
\begin{aligned}
\alpha &=\sin^{-1}\left(\dfrac{1}{2}\right)\\
&=\dfrac{\pi}{6}
\end{aligned} &\\
2\theta=\pi+\alpha,2\pi-\alpha,3\pi+\alpha,4\pi-\alpha &\\
\end{align*}
\end{document}