在乳胶中排列编号的数学公式

时间:2017-05-16 14:36:46

标签: latex

如何排版以下编号的数学公式:

enter image description here

2 个答案:

答案 0 :(得分:0)

使用amsmathcases环境:

enter image description here

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\[
  \Delta(x) = \begin{cases}
     1 & \text{if $x > 0$} \\
    -1 & \text{if $x < 0$} \\
     0 & \text{otherwise}
  \end{cases}
\]

\end{document}

答案 1 :(得分:0)

这是一种方法:

$
\Delta(x)= 
    \left\{ 
        \begin{matrix}
            1  & \mathrm{if}~x>0  \\ 
            -1 & \mathrm{if}~x<0  \\ 
            0  & \mathrm{otherwise}
        \end{matrix}
    \right.
$

这产生了你想要的等式:

The example LaTeX equation

这种类型的等式中有一些关键技巧:

  1. 左括号必须声明为\{才能使LaTeX到 知道显示它,因为它是一个特殊字符
  2. 此外,必须调整左大括号以匹配等式中包含的许多行,这是由前面的\left命令完成的。这也适用于([
  3. 由于您有\left命令,因此必须附带\right},但您不想显示正确的大括号,因此\right.结束没有显示右支撑的部分。
  4. \mathrm命令将其中的文本转回普通文本(暂时删除数学模式),以便您的&#34; if&#34;和&#34;否则&#34;没有斜体。
  5. ~只会增加一点空间,以便你的&#34; if&#34;不会与使用x > 0
  6. 时经常发生的mathrm发生冲突

    或者,您可以查看this post for other ways to write piecewise functions in LaTeX。我希望这会有所帮助。