答案1
希望它有效!
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$T_{fil}=\left\{\begin{array}{ll}
T\cup t_i, & \mathrm{if}\text{ }(ch_{ln}>2)\vee(t_i\in S_L) \\
T_{fil} & \mathrm{Otherwise} \\
\end{array}\right. \forall\,t_i\in T$
\end{document}
答案2
这是 Sebiastiáns 解决方案的一个更简单的版本:使用构建cases
环境
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
T_{\mathrm{fil}}=
\begin{cases}
T\cup t_i, & \text{if $(ch_{ln}>2)\vee(t_i\in S_L)$}
\\
T_{\mathrm{fil}} & \text{Otherwise}
\end{cases}
\qquad
\forall\,t_i\in T
\]
\end{document}
还请注意的用法,\mathrm{fil}
因为我假设这是一个名称,而不是一个变量。