我正在尝试写这个方程,但 LateX 给出了这些错误。我已经找到了类似的问题,但其中任何一个都可以解决问题。有什么建议吗?
\begin{equation}
\rho(X,Y) = {{{E(XY) - E(X)-E(Y)}\over{\sqrt{var(X)var(Y)}}}
\end{equation}
提前致谢!
答案1
}
等式末尾缺少一个。或者说,多了一些{
。您可以将输入简化为:
\begin{equation}
\rho(X,Y) = {E(XY) - E(X)-E(Y) \over \sqrt{var(X)var(Y)}}
\end{equation}
因为 的语法\over
是{<subformula> \over <subformula>}
,不需要在<subformula>
s 周围加上额外的括号。
使用正确的 LaTeX 语法和专用运算符E
和var
:
\documentclass{article}
\usepackage{amsmath}
\DeclareMathOperator{\E}{E}
\DeclareMathOperator{\var}{var}
\begin{document}
\begin{equation}
\rho(X,Y) = \frac{\E(XY)-\E(X)-\E(Y)}{\sqrt{\var(X)\var(Y)}}
\end{equation}
\end{document}