答案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}