案例左侧的中心对齐方程

案例左侧的中心对齐方程

我正在尝试获取以下内容我想要的是 在我的文件中,但我能做的最好的就是使用案例,但效果不太好

 S_{\sigma}(v,c) = \begin{cases}
    w \in V \mid &\text{there exists a path an alternating between v and w} \\
     &\text{ using the colors } \sigma(v) \text{ and c}.
\end{cases}

我得到以下 我该如何处理这个问题?

答案1

由于两端都需要花括号,因此我认为cases环境不合适。

这是一个使用双列array环境和\parbox高垂直条右侧文本材料指令的解决方案。我0.52\textwidth通过反复试验获得了 parbox 的宽度 ( }。

在此处输入图片描述

\documentclass{article}
\begin{document}
\[
S_{\sigma}(v,c) = 
\left\{ \begin{array}{@{} l | l @{}}
    w \in V & 
    \parbox{0.52\textwidth}{\raggedright there exists an alternating path between $v$ and $w$ using the colors $\sigma(v)$ and $c$.}
\end{array}\right\} \,.
\]
\end{document}

答案2

您可以将这两条线放入一个tabular环境中。

在此处输入图片描述

\documentclass{article}

\begin{document}

\[
S_{\sigma}(v,c) = 
\biggl\{
    w \in V\;\bigg|
    \begin{tabular}{l}
        there exists an alternating path between\\
        $v$ and $w$ using the colors $c$ and $\sigma(v)$
    \end{tabular}
\biggr\}
\]

\end{document}

相关内容