使用 \begin{equation} 但无法对齐方程式,并且只想显示一个方程式的数字

使用 \begin{equation} 但无法对齐方程式,并且只想显示一个方程式的数字

我想使用 \begin{equation} 编写这些方程式,但无法将它们对齐到左侧,并且只想为它们放置一个参考编号

\begin{equation}
\begin{split}
S=-\frac{1}{2}\rho v \delta \left(\frac{\ mu}{pF}\right)^{1/2} e \sin{\theta} \\
T = -\frac{1}{2}\rho v \delta \left(\frac{\mu}{pF}\right)^{1/2} \left( 1+e \cos{\theta}- r\alpha \left(\frac{p}{\mu}\right)^{1/2} \cos{i} \right)
\end{split}
\end{equation}

这是我的代码的输出 在此处输入图片描述

但我想像下图这样对齐方程式

在此处输入图片描述

帮助我谢谢 :)

答案1

您的代码没有生成图像。

但是,请使用正确的标记:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}
\begin{split}
S &= -\frac{1}{2}\rho v \delta \left(\frac{\mu}{pF}\right)^{\!1/2} e \sin\theta \\
T &= -\frac{1}{2}\rho v \delta \left(\frac{\mu}{pF}\right)^{\!1/2}
      \biggl( 1+e \cos\theta- r\alpha \left(\frac{p}{\mu}\right)^{\!1/2} \cos i \biggr) \\
W &= -\frac{1}{2}\rho v \delta \frac{r\alpha}{\sqrt{F}}\sin i \cos(\omega+\theta)
\end{split}
\end{equation}

\end{document}

请注意,我将\left(和改为\right)\biggl(\biggr)这样可以生成正确大小的围栏。也\sin{\theta}可以更简单地说\sin\theta

我还在指数中添加了一个负细空格,以避免它们离括号太远。

在此处输入图片描述

答案2

我的卑微​​建议是:你可以用 a、b、c、d 和 e 替换每个方程式。

在此处输入图片描述

\documentclass[a4paper,12pt]{book}
\usepackage{amsmath}
\begin{document}
\chapter{Name}
\begin{equation}
\begin{aligned} 
    a&= b \\
    c&= d \\
    e&= f 
\end{aligned}
\end{equation}
\end{document}

例如:

S& =-\frac{1}{2}\rho v \delta \left(\frac{\mu}{pF}\right)^{1/2} e \sin\theta \\

代替a&= b

相关内容