我有以下行:
$P(can't\,communicate)
= \frac{\#\,of\,combinations\,of\,4\,different\,keys}
{total\,possible\,arrangements}
= \frac{\frac{10*9*8*7}{4}}{2025}
= \frac{1260}{2025} = 0.62 = 62 \% $
这并不适合一行,因此“= 0.62 = 62 %”属于新行,但它被拉伸以填满整行。
为什么会这样?我该如何阻止这种情况发生?我只想让它看起来标准。
答案1
我认为这是由于您使用 \, 的间距造成的。如果您想在数学环境中输入文本,请使用 amsmath 中的 \text{}。对于您来说,您可以使用
$P(\text{can't communicate})
= \frac{\#\text{ of combinations of 4 different keys}}
{\text{total possible arrangements}}
= \frac{\frac{10*9*8*7}{4}}{2025}
= \frac{1260}{2025} = 0.62 = 62$
由于它太长,最好不要使用内联数学,而是使用一些方程式或对齐环境,例如(使用 amsmath 包中的对齐环境)
\begin{align}
P(\text{can't communicate})
& = \frac{\#\text{ of combinations of 4 different keys}}
{\text{total possible arrangements}}\\
& = \frac{\frac{10*9*8*7}{4}}{2025}\\
& = \frac{1260}{2025}\\
& = 0.62\\
& = 62 \%
\end{align}