我怎样才能在等式中将下一步恰好写在上一步的下方而不重复等式的左侧?

我怎样才能在等式中将下一步恰好写在上一步的下方而不重复等式的左侧?

如果我想按照下图在乳胶中书写,我该怎么写?

准确低于书写

答案1

尝试这个:

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\begin{document}
    \begin{align*}
    P(\text{accident occurs and spill develops})&=P(A \cap B)\\
    &=P(A|B)P(B)\\
    &=\dfrac{3}{15000}\cdot \dfrac{8}{50000}\\
    &=0.000000032
    \end{align*}
\end{document}

输出

在此处输入图片描述

答案2

以下解决方案也采用了align*环境(参见@RaffaeleSantoro 的解决方案),还处理了一些印刷上的细节,如使用直立字母表示“数学运算符”(比如“概率运算符” \P),使用\mid而不是|来表示条件,以及0.000000032用指数符号代替。

在此处输入图片描述

\documentclass{article} % or some other suitable document class

\usepackage{amsmath} % for '\DeclareMathOperator' macro and 'align*' environment
\let\P\relax                % undefine the existing '\P' macro
\DeclareMathOperator{\P}{P} % 'probability operator' (upright lettering)

\usepackage{siunitx} % for '\num' macro
\sisetup{exponent-product=\cdot}

\begin{document}

\begin{align*}
\P(\textnormal{accident occurs and spill develops})
  &= \P(A \cap B) \\
  &= \P(A\mid B) \P(B) \\
  &= \frac{3}{15000} \cdot \frac{8}{50000}\\
  &= \num{3.2e-9}
\end{align*}

\end{document}

相关内容