如何輸入分配規則?

如何輸入分配規則?

我正在嘗試將此分配規則輸入到我的乳膠文件中

在此輸入影像描述

我不知道你會如何輸入它。

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

在此輸入影像描述

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

要得到

在此輸入影像描述

相關內容