答案1
cases
这是来自包的环境的一项工作amsmath
。以下代码将产生您想要的结果:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{cases}
\text{if $d\le-0.993$}&\text{allocate to Mandsaur,}\\
\text{if $-0.993<d<0.657$}&\text{allocate to Chittorgarh,}\\
\text{otherwise}&\text{allocate to Kota.}\\
\end{cases}
\]
\end{document}
另一方面,这种用法cases
有点不合常规。通常,替代方案位于第一列,条件位于第二列。我建议使用以下代码(结果如下):
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\text{Allocate to }
\begin{cases}
\text{Mandsaur},&\text{if $d\le-0.993$,}\\
\text{Chittorgarh},&\text{if $-0.993<d<0.657$,}\\
\text{Kota},&\text{otherwise.}\\
\end{cases}
\]
\end{document}