如何将一行的“=>”符号放在另一行的“=”下方?

如何将一行的“=>”符号放在另一行的“=”下方?

我正在使用以下代码在 Google Colab 中编写 LaTeX,

$$mean \ of \ apples = \frac{sum \ of \ apples}{number \ of \  children}$$
\
$$\Rightarrow \frac{1725}{6} = 287.5$$

我得到了这个输出 -

在此处输入图片描述

我怎样才能使第二行的“=>”位于第一行的“=”下方。像这样 -

mean of apples = sum of apples / number of children
               => 1725/6
               => 287.5 

答案1

实现所需对齐的 MWE 如下:

\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}

\begin{document}

\begin{equation}
\begin{split}
mean \ of \ apples & = \frac{sum \ of \ apples}{number \ of \  children} \\
& \Rightarrow \frac{1725}{6} = 287.5
\end{split}
\end{equation}

\end{document}

方程式正确对齐

答案2

@8aa 的答案 (+1) 解决了方程对齐的问题,但在方程中写入文本时不应使用变量,就像问题中以及提到的答案中所做的那样。正确的做法是使用直立文本,例如:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}
\begin{split}
\textup{mean of apples} 
    & = \frac{\textup{sum of apples}}{\textup{number of children}} \\[1ex]
    & \Rightarrow \frac{1725}{6} = 287.5
\end{split}
\end{equation}

\end{document}    

编辑:被认为是@Barbara Beton 的评论。

在此处输入图片描述

相关内容