答え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
少し変わっています。通常、選択肢は最初の列に、条件は 2 番目の列に示されます。次のコードをお勧めします (結果は以下のとおりです)。
\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}
答え2
TeX.SE へようこそ。常に を提供するようにしてくださいMWE
。そうすれば、より多くのユーザーがあなたの質問に答えてくれるようになります。とはいえ、出発点として、これをスケルトンとして使うこともできます:
\documentclass[10pt,a4paper]{article}
\usepackage{amsmath}
\begin{document}
The allocation is as follows:
\[\begin{cases}
\text{if}~a\leq1,&c\\
\text{if}~b\geq1,&d\\
c,&e
\end{cases}\]
\end{document}
取得するため