答案1
正如@John Kormylo在上面的评论中所建议的那样,这是由于y
in\sigma_y
延伸到低于x
in造成的\sigma_x
。您可以使用\vphantom
来处理这个问题--我通常这样做--尽管我承认在更复杂的表达式中它会变得乏味:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\mathit{PDF}(x,y) = \frac{1}{2\pi\sigma_x\sigma_y} e^{-\frac{1}{2}\left[ \left(\frac{x-x_0}{\sigma_{x\vphantom{y}}}\right)^2 + \left(\frac{y-y_0}{\sigma_y}\right)^2 \right]}
\end{equation}
\end{document}
得出
我也在\mathit{PDF}
这里使用了 而不是仅仅PDF
;这将提供更好的间距。