将多行文本标记为方程式

将多行文本标记为方程式

我试图得到如下屏幕上 (2) 所示的结果。不知道如何得到。我尝试过对齐、拆分、多行,但都不是有效的。你能帮助我实现吗?提前致谢。

带标签的文本对齐

答案1

使用{minipage}

\documentclass[leqno]{article}
\usepackage{lipsum}

\begin{document}

\lipsum[2]
%
\begin{equation}
\begin{minipage}{10cm}
If $F \subseteq E(G)$ is feasible on $V_j^1 \cup V_j^2 $, 
then $d_F(x)$ is odd if $x \in V_j^1$ and $d_F(x)$ is even
if $x \in V_j^2$
\end{minipage}
\end{equation}
\end{document}

上述代码的结果

答案2

好的,我明白了。

\begin{equation}
\begin{split} 
~ & \text{If } F \subseteq E(G) \text{ is feasible on } V_j^o \cup V_j^e, 
\text{then} d_F(x) \text{ is odd if } \\ 
&x \in V_j^o \text{ and } d_F(x) \text{ is even if } x \in V_j^e.
\end{split}
\end{equation}

结果是:

回答

相关内容