答案1
您的 MWE 无法工作!对于数学表达式,您需要数学环境;对于内联公式$ ... your math expression ...$
,您需要数学环境;对于显示公式(在文本中独立存在);\begin{equation} .... \end{equation}
对于编号方程式,您需要数学环境;对于非编号方程式,您需要\[ ... \]
数学环境。对于数学环境,存在其他可能性,这些可能性可通过我们的数据包获得,等等amsmath
。
而且公式格式不正确。正确的代码是:
\documentclass[border=3mm,
preview]{standalone}% or any other document class, as article, book ..
\begin{document}
$\sigma^2 = \frac{\sum\limits_{i=1}^N (X -\mu)^2}{N}$
\end{document}
这使:
答案2
这是一个更好的 MWE:
\documentclass[a4paper]{article}
\begin{document}
\[
\sigma^2=\frac{\sum_{i=1}^N (X -\mu)^2}{N}
\]
\end{document}