数学公式中正确的 $ 和 {} 位置问题

数学公式中正确的 $ 和 {} 位置问题

我阅读了很多有关 LaTeX 中的数学文本格式的文章,但现在我只是对这个公式中的错误感到困惑。

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{multline}
P(B_{1}) = P({A_{1}} \cap \text{\={A}_{2}} \cap \text{\={A}_{3}})\\
= P(A_{1})  * P(\text{\={A}_{2}}) * P(\text{\={A}_{3}})\\
 = 0,0001 * 0,9988 * 0,9998 = 0,0000997
\end{multline}
\end{document}

有人能帮助我吗?

答案1

您使用了一种奇怪的方式在 A 上添加横线(至少:我从未见过这样做)。您可以使用命令\bar来实现这一点。试试这个:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\begin{multline}
P(B_{1}) = P({A_{1}} \cap \bar{A}_{2} \cap \bar{A}_{3})\\
= P(A_{1})  * P(\bar{A}_{2}) * P(\bar{A}_{3})\\
 = 0,0001 * 0,9988 * 0,9998 = 0,0000997
\end{multline}
\end{document}

另外,还有一些建议:您可以通过将逗号括在花括号中来避免小数点逗号后的多余空格。乘号的星号可能看起来很奇怪,所以我建议改用\times。您可以将等号与align环境对齐:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\begin{align*}
P(B_{1}) 
& = P({A_{1}} \cap \bar{A}_{2} \cap \bar{A}_{3})\\
& = P(A_{1}) \times P(\bar{A}_{2}) \times P(\bar{A}_{3})\\
& = 0{,}0001 \times 0{,}9988 \times 0{,}9998 = 0{,}0000997
\end{align*}
\end{document}

答案2

我不确定你想要什么,但可以尝试一下:

\documentclass{article}

\usepackage{mathtools}
\usepackage{siunitx}

\sisetup{
  output-decimal-marker = {,},
  group-digits = false
}

\begin{document}

\begin{align*}
  P(B_{1})
  &= P(A_{1} \cap \overline{A_{2}} \cap \overline{A_{3}})\\
  &= P(A_{1}) \cdot P(\overline{A_{2}}) \cdot P(\overline{A_{3}})\\
  &= \num{0.0001} \cdot \num{0.9988} \cdot \num{0.9998}\\
  &= \num{0.0000997}
\end{align*}

\end{document}

输出

相关内容