如何在 Latex 中对齐我的数学方程式

如何在 Latex 中对齐我的数学方程式

我在研究工作中加入了几个数学方程。所以我想知道如何将整个方程向左移动,尤其是方程 7。

在此处输入图片描述

我用来生成它的乳胶代码是:

\begin{equation} \label{eq7}
\begin{split}
I(W;G) = \\ { \sum_{g \in G}^{2} {max} \in (P_{WG}(W,G),0.001)} \times log
\frac{P_{WG(W,G)}}{P(G)P(W)}
\end{split}
\end{equation}

答案1

\documentclass[twocolumn]{IEEEtran} 
\usepackage{amsmath}
\begin{document} 

\begin{equation} \label{eq7}
\begin{aligned}
  & I(W;G) = \\
  & \sum_{g \in G}^2 \max \bigl\{P_{WG}(W,G),0.001\bigr\} \times \log \frac{P_{WG(W,G)}}{P(G)P(W)}
\end{aligned}
\end{equation}

\end{document}

在此处输入图片描述

答案2

像这样吗?

在此处输入图片描述

请注意,我分别将{和替换}\biggl\{\biggr\}。我还将max和替换log\max\log

\documentclass[twocolumn]{IEEEtran} % ??
\usepackage{amsmath}
\begin{document}

\begin{equation} \label{eq7}
\begin{split}
I(W;G) &= \biggl\{ \sum_{g\in G} 
\max \bigl(P_{WG}(W,G),0.001\bigr) \biggr\} \\
&\qquad\times \log\frac{P_{WG}(W,G)}{P(G)P(W)}
\end{split}
\end{equation}

\end{document}

相关内容