如何输入分配规则?

如何输入分配规则?

我正在尝试将此分配规则输入到我的乳胶文档中

在此处输入图片描述

我不明白您将如何输入它。

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

要得到

在此处输入图片描述

相关内容