割り当てルールはどのように入力しますか?

割り当てルールはどのように入力しますか?

この割り当てルールをLaTeX文書に入力しようとしています

ここに画像の説明を入力してください

どのように入力すればいいのか分かりません。

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

取得するため

ここに画像の説明を入力してください

関連情報