我正在使用以下方法来对齐这两个方程。但是,它们在垂直方向上不在同一水平面上。我该如何解决这个问题?
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\begin{split}
G(Q,N)=\sum\limits_{Q_i \in N} F(Q_i,N); \;\;
\end{split}
\begin{split}
F(n,N)=
\begin{cases}
1, & \text{if } n > N \\
0.5, & \text{if } n = N \\
0, & \text{otherwise}
\end{cases}
\end{split}
\end{equation*}
\end{document}
答案1
不要将每个部分都设置为split
。相反,只需用\qquad
(或其他水平空格)将它们分开即可。这可确保数学轴不会调整。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
G(Q,N) = \sum\limits_{Q_i \in N} F(Q_i,N); \qquad
F(n,N) = \begin{cases}
1, & \text{if } n > N \\
0.5, & \text{if } n = N \\
0, & \text{otherwise}
\end{cases}
\]
\end{document}